about summary refs log tree commit diff
path: root/nscd
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-02-18 17:25:16 +0000
committerUlrich Drepper <drepper@redhat.com>2000-02-18 17:25:16 +0000
commit64acf8ede4f6d694c556175829c18195ad8106eb (patch)
tree260699da9742ea69adc808d351852cf15ce73c06 /nscd
parent60c4f8eb1ef3b84ab17749e2bf3a8a14baacd1a2 (diff)
downloadglibc-64acf8ede4f6d694c556175829c18195ad8106eb.tar.gz
glibc-64acf8ede4f6d694c556175829c18195ad8106eb.tar.xz
glibc-64acf8ede4f6d694c556175829c18195ad8106eb.zip
Update.
2000-02-18  Ulrich Drepper  <drepper@redhat.com>

	* nscd/connections.c (handle_request): Don't abort() if unknown
	command is sent.
Diffstat (limited to 'nscd')
-rw-r--r--nscd/connections.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nscd/connections.c b/nscd/connections.c
index 2db64c14b5..f80ca856a9 100644
--- a/nscd/connections.c
+++ b/nscd/connections.c
@@ -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;
     }
 }