summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pwd_mkdb
diff options
context:
space:
mode:
authorsheldonh <sheldonh@FreeBSD.org>1999-08-31 13:11:39 +0000
committersheldonh <sheldonh@FreeBSD.org>1999-08-31 13:11:39 +0000
commitcf4c04192a8fb97e984a62b9a1a91497cac8d067 (patch)
treeebe06a7e5aa50d65936adea18e5dcfdc07f8f1b2 /usr.sbin/pwd_mkdb
parent506aa9c1b6291f3dfca3bfbfa7bf5b962e2027d2 (diff)
downloadFreeBSD-src-cf4c04192a8fb97e984a62b9a1a91497cac8d067.zip
FreeBSD-src-cf4c04192a8fb97e984a62b9a1a91497cac8d067.tar.gz
Back out previous commit. I mistook passing commentary from bde for
review. Requested by: bde
Diffstat (limited to 'usr.sbin/pwd_mkdb')
-rw-r--r--usr.sbin/pwd_mkdb/pw_scan.c15
-rw-r--r--usr.sbin/pwd_mkdb/pwd_mkdb.88
2 files changed, 6 insertions, 17 deletions
diff --git a/usr.sbin/pwd_mkdb/pw_scan.c b/usr.sbin/pwd_mkdb/pw_scan.c
index e03b49c..5190686 100644
--- a/usr.sbin/pwd_mkdb/pw_scan.c
+++ b/usr.sbin/pwd_mkdb/pw_scan.c
@@ -56,9 +56,6 @@ static const char rcsid[] =
#include "pw_scan.h"
-static int big_uids = 0; /* Used for legacy max uid_t warning */
-static int big_gids = 0; /* Used for legacy max gid_t warning */
-
int
pw_scan(bp, pw)
char *bp;
@@ -87,9 +84,9 @@ pw_scan(bp, pw)
warnx("root uid should be 0");
return (0);
}
- if (id > USHRT_MAX && !(big_uids++)) {
- warnx("%s > legacy max uid value (%d): "
- "no more such warnings", p, USHRT_MAX);
+ if (id > USHRT_MAX) {
+ warnx("%s > max uid value (%d)", p, USHRT_MAX);
+ /*return (0);*/ /* THIS SHOULD NOT BE FATAL! */
}
pw->pw_uid = id;
@@ -97,9 +94,9 @@ pw_scan(bp, pw)
goto fmt;
if(p[0]) pw->pw_fields |= _PWF_GID;
id = atol(p);
- if (id > USHRT_MAX && !(big_gids++)) {
- warnx("%s > max gid value (%d): "
- "no more such warnings", p, USHRT_MAX);
+ if (id > USHRT_MAX) {
+ warnx("%s > max gid value (%d)", p, USHRT_MAX);
+ /* return (0); This should not be fatal! */
}
pw->pw_gid = id;
diff --git a/usr.sbin/pwd_mkdb/pwd_mkdb.8 b/usr.sbin/pwd_mkdb/pwd_mkdb.8
index c3b68a2..3223353 100644
--- a/usr.sbin/pwd_mkdb/pwd_mkdb.8
+++ b/usr.sbin/pwd_mkdb/pwd_mkdb.8
@@ -149,14 +149,6 @@ style databases for the password file but depended on the calling programs
to install them.
The program was renamed in order that previous users of the program
not be surprised by the changes in functionality.
-.Pp
-The
-.Nm
-program will produce warnings if it finds a UID or GID larger than the
-historical maximum (USHRT_MAX), as these may cause problems for software
-which assumes such a maximum.
-Only the first such UID and the first such GID will produce a
-warning.
.Sh SEE ALSO
.Xr chpass 1 ,
.Xr passwd 1 ,
OpenPOWER on IntegriCloud