]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(handle_request): Don't abort() if unknown command is sent.
authorUlrich Drepper <drepper@redhat.com>
Fri, 18 Feb 2000 17:21:11 +0000 (17:21 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 18 Feb 2000 17:21:11 +0000 (17:21 +0000)
nscd/connections.c

index 10f49cd0c645386320888a254e5fe4300e29118f..60676a75fb95954668114d195266d53472d6cc6d 100644 (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;
     }
 }