diff options
author | ache <ache@FreeBSD.org> | 1997-03-11 14:11:43 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-03-11 14:11:43 +0000 |
commit | c33c7f83d9d5e4ce3275bd158f8d1b0705c2e8f8 (patch) | |
tree | 138ce8bcadb2fea83c2a99278ec8f7485ae9789a /usr.sbin/pw | |
parent | db776ff976bea03aafbaa23a0c8dffcd9798f15d (diff) | |
download | FreeBSD-src-c33c7f83d9d5e4ce3275bd158f8d1b0705c2e8f8.zip FreeBSD-src-c33c7f83d9d5e4ce3275bd158f8d1b0705c2e8f8.tar.gz |
Fix srandom arg according to Lite2
Diffstat (limited to 'usr.sbin/pw')
-rw-r--r-- | usr.sbin/pw/pw_user.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pw/pw_user.c b/usr.sbin/pw/pw_user.c index a5ea801..0d26795 100644 --- a/usr.sbin/pw/pw_user.c +++ b/usr.sbin/pw/pw_user.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: pw_user.c,v 1.15 1997/02/22 16:12:30 peter Exp $ + * $Id: pw_user.c,v 1.17 1997/03/03 07:59:54 ache Exp $ */ #include <unistd.h> @@ -835,7 +835,7 @@ pw_pwcrypt(char *password) /* * Calculate a salt value */ - srandom((unsigned) (time(NULL) ^ getpid())); + srandom((unsigned long) (time(NULL) ^ getpid())); for (i = 0; i < 8; i++) salt[i] = chars[random() % 63]; salt[i] = '\0'; @@ -920,7 +920,7 @@ pw_password(struct userconf * cnf, struct cargs * args, char const * user) switch (cnf->default_password) { case -1: /* Random password */ - srandom((unsigned) (time(NULL) ^ getpid())); + srandom((unsigned long) (time(NULL) ^ getpid())); l = (random() % 8 + 8); /* 8 - 16 chars */ pw_getrand(rndbuf, l); for (i = 0; i < l; i++) |