summaryrefslogtreecommitdiffstats
path: root/pw/pw_user.c
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1997-03-11 14:11:43 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1997-03-11 14:11:43 +0000
commit5b4513c872c5437e61058be832e4d1e5e7b18609 (patch)
tree242016541c5ee39a34f02bbc8df283d9c563a955 /pw/pw_user.c
parentfe9819cd8f05eb15ceb1beb198a1200dfda21886 (diff)
downloadpw-darwin-5b4513c872c5437e61058be832e4d1e5e7b18609.tar.gz
pw-darwin-5b4513c872c5437e61058be832e4d1e5e7b18609.tar.zst
pw-darwin-5b4513c872c5437e61058be832e4d1e5e7b18609.zip
Fix srandom arg according to Lite2
Diffstat (limited to 'pw/pw_user.c')
-rw-r--r--pw/pw_user.c6
1 files changed, 3 insertions, 3 deletions
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 <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++)