]> git.ozlabs.org Git - ppp.git/commitdiff
added get_host_seed
authorPaul Mackerras <paulus@samba.org>
Wed, 25 Mar 1998 03:09:12 +0000 (03:09 +0000)
committerPaul Mackerras <paulus@samba.org>
Wed, 25 Mar 1998 03:09:12 +0000 (03:09 +0000)
pppd/sys-ultrix.c

index 43fd115136371f246183337fe0f20ff6d1b880f9..d956be4ba4339d542fdefe69606a5e41f2151fa6 100644 (file)
@@ -21,7 +21,7 @@
  */
 
 #ifndef lint
-static char rcsid[] = "$Id: sys-ultrix.c,v 1.21 1997/04/30 05:59:38 paulus Exp $";
+static char rcsid[] = "$Id: sys-ultrix.c,v 1.22 1998/03/25 03:09:12 paulus Exp $";
 #endif
 
 /*
@@ -1217,6 +1217,16 @@ GetMask(addr)
 }
 
 
+/*
+ * Use the hostid as part of the random number seed.
+ */
+int
+get_host_seed()
+{
+    return gethostid();
+}
+
+
 /*
   Seems like strdup() is not part of string package in Ultrix.
   If I understood the man-page on the sun this should work.