mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-19 07:00:08 +00:00
(handle_request): Don't abort() if unknown command is sent.
This commit is contained in:
parent
084fd937b8
commit
970d95a453
@ -1,5 +1,5 @@
|
||||
/* Inner loops of cache daemon.
|
||||
Copyright (C) 1998, 1999 Free Software Foundation, Inc.
|
||||
Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
|
||||
|
||||
@ -371,7 +371,8 @@ cannot handle old request version %d; current version is %d"),
|
||||
break;
|
||||
|
||||
default:
|
||||
abort ();
|
||||
/* Ignore the command, it's nothing we know. */
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user