From: Ulrich Drepper Date: Fri, 18 Feb 2000 17:21:11 +0000 (+0000) Subject: (handle_request): Don't abort() if unknown command is sent. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=970d95a453de41e254f6343a1c50066ef056a4d5;p=thirdparty%2Fglibc.git (handle_request): Don't abort() if unknown command is sent. --- diff --git a/nscd/connections.c b/nscd/connections.c index 10f49cd0c64..60676a75fb9 100644 --- a/nscd/connections.c +++ b/nscd/connections.c @@ -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 , 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; } }