2006-01-22 Aurelien Jarno <aurelien@aurel32.net>

* sysdeps/gnu/errlist-compat.awk: Reduce required number of symbols in
	sanity check.
This commit is contained in:
Roland McGrath 2006-01-23 21:26:20 +00:00
parent bdc7e223aa
commit c2b22a0818
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ $1 == "#errlist-compat" {
# Don't process any further Versions files
ARGC = ARGIND + 1;
cnt = $2 + 0;
if (cnt < 100) {
if (cnt < 80) {
print "*** this line seems bogus:", $0 > "/dev/stderr";
exit 1;
}