diff options
author | Roland McGrath <roland@gnu.org> | 2006-01-23 21:26:20 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-01-23 21:26:20 +0000 |
commit | c2b22a0818c5c22493a086062e4cb1dc208026ae (patch) | |
tree | bcbacd037c144c4f9e2f3705d2739e59c46491ff /sysdeps | |
parent | bdc7e223aaced59cd03436e1518845db011fba4b (diff) | |
download | glibc-c2b22a0818c5c22493a086062e4cb1dc208026ae.tar.gz glibc-c2b22a0818c5c22493a086062e4cb1dc208026ae.tar.xz glibc-c2b22a0818c5c22493a086062e4cb1dc208026ae.zip |
2006-01-22 Aurelien Jarno <aurelien@aurel32.net>
* sysdeps/gnu/errlist-compat.awk: Reduce required number of symbols in sanity check.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/gnu/errlist-compat.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/gnu/errlist-compat.awk b/sysdeps/gnu/errlist-compat.awk index 2fb5fd906d..ab67a18f64 100644 --- a/sysdeps/gnu/errlist-compat.awk +++ b/sysdeps/gnu/errlist-compat.awk @@ -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; } |