(handle_request): Don't abort() if unknown command is sent.

This commit is contained in:
Ulrich Drepper 2000-02-18 17:21:11 +00:00
parent 084fd937b8
commit 970d95a453

View File

@ -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;
}
}