diff options
| author | Julian Elischer <julian@FreeBSD.org> | 1996-06-20 19:19:29 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 1996-06-20 19:19:29 +0000 |
| commit | 6ede0fb59dd5e5bc2c298773db28ab657182d33a (patch) | |
| tree | 832987257c81c1999b531a2a2fd0177e2da468ce /lib/libc/gen/pw_scan.c | |
| parent | b5bc989d0c35e4c1ebcb45a556604161efb1a83c (diff) | |
Notes
Diffstat (limited to 'lib/libc/gen/pw_scan.c')
| -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 9d280f7ded8b..00f640bd0e9a 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; |
