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.
This commit is contained in:
Roland McGrath
2003-04-10 18:58:20 +00:00
parent 808a4baeb2
commit 2b61902ee9

View File

@ -322,6 +322,7 @@ qual_desc(s, opt, not)
{
if (s && *s && isdigit((unsigned char)*s)) {
qualify_one(atoi(s), opt, not);
return 0;
}
return -1;
}