summaryrefslogtreecommitdiff
path: root/sysdeps/gnu/errlist-compat.awk
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2004-10-21 11:46:43 +0000
committerJakub Jelinek <jakub@redhat.com>2004-10-21 11:46:43 +0000
commit04e35f0dafe018a948caf025ee7da83960717ad6 (patch)
tree1745c9cef67bd303626d5e8e7ac46426a0c126eb /sysdeps/gnu/errlist-compat.awk
parentdcd417d9e1e6e4824079bce11f6e07c2c35f5b34 (diff)
Back out errlist changes for now too.cvs/fedora-glibc-2_3_3-73
Diffstat (limited to 'sysdeps/gnu/errlist-compat.awk')
-rw-r--r--sysdeps/gnu/errlist-compat.awk8
1 files changed, 1 insertions, 7 deletions
diff --git a/sysdeps/gnu/errlist-compat.awk b/sysdeps/gnu/errlist-compat.awk
index db827f3f70..cb5798034d 100644
--- a/sysdeps/gnu/errlist-compat.awk
+++ b/sysdeps/gnu/errlist-compat.awk
@@ -59,7 +59,7 @@ END {
count = maxerr + 1;
- if (highest < count) {
+ if (highest != count) {
printf "*** errlist.c count %d vs Versions sys_errlist@%s count %d\n", \
count, highest_version, highest > "/dev/stderr";
exit 1;
@@ -79,12 +79,6 @@ END {
print "/* This file was generated by errlist-compat.awk; DO NOT EDIT! */\n";
print "#include <shlib-compat.h>\n";
- if (highest > count) {
- printf "*** errlist.c count %d inflated to %s count %d (old errno.h?)\n", \
- count, highest_version, highest > "/dev/stderr";
- printf "#define ERR_MAX %d\n\n", highest;
- }
-
for (old in compat) {
new = compat[old];
n = vcount[old];