Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 18 Feb 2000 17:25:16 +0000 (17:25 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 18 Feb 2000 17:25:16 +0000 (17:25 +0000)
2000-02-18  Ulrich Drepper  <drepper@redhat.com>

* nscd/connections.c (handle_request): Don't abort() if unknown
command is sent.

ChangeLog
nscd/connections.c

index 9d1c7b0..e32d47e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-02-18  Ulrich Drepper  <drepper@redhat.com>
+
+       * nscd/connections.c (handle_request): Don't abort() if unknown
+       command is sent.
+
 2000-02-17  Ulrich Drepper  <drepper@redhat.com>
 
        * nscd/hstcache.c (cache_addhst): Don't cache name->record entries
index 2db64c1..f80ca85 100644 (file)
@@ -375,7 +375,8 @@ cannot handle old request version %d; current version is %d"),
       break;
 
     default:
-      abort ();
+      /* Ignore the command, it's nothing we know.  */
+      break;
     }
 }