summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.sbin/ppp/chap.c4
-rw-r--r--usr.sbin/ppp/command.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ppp/chap.c b/usr.sbin/ppp/chap.c
index 0e30cce..63fe34c 100644
--- a/usr.sbin/ppp/chap.c
+++ b/usr.sbin/ppp/chap.c
@@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: chap.c,v 1.10 1997/02/22 16:10:05 peter Exp $
+ * $Id: chap.c,v 1.11 1997/03/10 08:04:13 ache Exp $
*
* TODO:
*/
@@ -80,7 +80,7 @@ int chapid;
char *cp;
if (!randinit) {
- srandom((unsigned)(time(NULL) ^ getpid()));
+ srandom((unsigned long)(time(NULL) ^ getpid()));
randinit = 1;
}
diff --git a/usr.sbin/ppp/command.c b/usr.sbin/ppp/command.c
index 6feed20..f78370b 100644
--- a/usr.sbin/ppp/command.c
+++ b/usr.sbin/ppp/command.c
@@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: command.c,v 1.33 1997/03/10 06:21:00 ache Exp $
+ * $Id: command.c,v 1.34 1997/03/10 08:04:15 ache Exp $
*
*/
#include <sys/types.h>
@@ -655,7 +655,7 @@ char **argv;
VarRedialTimeout = -1;
printf("Using random redial timeout.\n");
if (!randinit) {
- srandom((unsigned)(time(NULL) ^ getpid()));
+ srandom((unsigned long)(time(NULL) ^ getpid()));
randinit = 1;
}
}
OpenPOWER on IntegriCloud