2003-04-10  Roland McGrath  <roland@redhat.com>

	* syscall.c (qual_desc): Return zero after parsing number.
	From Rob Leslie <rob@mars.org>, fixes Debian bug #188379.
diff --git a/syscall.c b/syscall.c
index c9c635a..a1c3734 100644
--- a/syscall.c
+++ b/syscall.c
@@ -322,6 +322,7 @@
 {
 	if (s && *s && isdigit((unsigned char)*s)) {
 		qualify_one(atoi(s), opt, not);
+		return 0;
 	}
 	return -1;
 }