Fix srandom arg according to Lite2

This commit is contained in:
Andrey A. Chernov 1997-03-11 14:11:43 +00:00
parent 1d98c12acc
commit f2a6c90b00

View File

@ -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++)