diff options
author | julian <julian@FreeBSD.org> | 1996-06-20 19:19:29 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1996-06-20 19:19:29 +0000 |
commit | e7934b56b01e4a1aeb8fabc6d96f452952d915fb (patch) | |
tree | 832987257c81c1999b531a2a2fd0177e2da468ce /lib | |
parent | dc39aea8d0f37932c58d8ae9b851a99d0d47129b (diff) | |
download | FreeBSD-src-e7934b56b01e4a1aeb8fabc6d96f452952d915fb.zip FreeBSD-src-e7934b56b01e4a1aeb8fabc6d96f452952d915fb.tar.gz |
Submitted by: archie@whistle.com
This program should COMPLAIN about uids > 65K but not abort.. they are after
all legal, and some of us NEED them!
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/pw_scan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/pw_scan.c b/lib/libc/gen/pw_scan.c index 9d280f7..00f640b 100644 --- a/lib/libc/gen/pw_scan.c +++ b/lib/libc/gen/pw_scan.c @@ -83,7 +83,7 @@ pw_scan(bp, pw) } if (id > USHRT_MAX) { warnx("%s > max uid value (%d)", p, USHRT_MAX); - return (0); + /*return (0);*/ /* THIS SHOULD NOT BE FATAL! */ } pw->pw_uid = id; @@ -93,7 +93,7 @@ pw_scan(bp, pw) id = atol(p); if (id > USHRT_MAX) { warnx("%s > max gid value (%d)", p, USHRT_MAX); - return (0); + /* return (0); This should not be fatal! */ } pw->pw_gid = id; |