From 2685b7a6be1cdc16cf1003fca27c05c707cb463a Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Tue, 11 Mar 1997 14:11:43 +0000 Subject: Fix srandom arg according to Lite2 --- pw/pw_user.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pw/pw_user.c') diff --git a/pw/pw_user.c b/pw/pw_user.c index a5ea801..0d26795 100644 --- a/pw/pw_user.c +++ b/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 @@ -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++) -- cgit v1.2.3-56-ge451