diff options
author | ache <ache@FreeBSD.org> | 1997-06-14 00:27:03 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-06-14 00:27:03 +0000 |
commit | 66946f930588a5258a235e5cfaac5d2085445620 (patch) | |
tree | d21484bd0330527c7e1660f2d64ee0a4fdd01014 /usr.sbin/pw | |
parent | 1b5fc58b0b83c6f4268bdcfa1f6b16335729bbde (diff) | |
download | FreeBSD-src-66946f930588a5258a235e5cfaac5d2085445620.zip FreeBSD-src-66946f930588a5258a235e5cfaac5d2085445620.tar.gz |
Remove srandomdev fallback code
Diffstat (limited to 'usr.sbin/pw')
-rw-r--r-- | usr.sbin/pw/pw_user.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/usr.sbin/pw/pw_user.c b/usr.sbin/pw/pw_user.c index b478c7b..b7f146d 100644 --- a/usr.sbin/pw/pw_user.c +++ b/usr.sbin/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.19 1997/03/24 15:09:41 ache Exp $ + * $Id: pw_user.c,v 1.20 1997/05/24 10:41:49 davidn Exp $ */ #include <unistd.h> @@ -840,9 +840,10 @@ pw_pwcrypt(char *password) if (!randinit) { randinit = 1; #ifdef __FreeBSD__ - if (srandomdev() < 0) + srandomdev(); +#else + srandom((unsigned long) (time(NULL) ^ getpid())); #endif - srandom((unsigned long) (time(NULL) ^ getpid())); } for (i = 0; i < 8; i++) salt[i] = chars[random() % 63]; @@ -912,9 +913,10 @@ pw_password(struct userconf * cnf, struct cargs * args, char const * user) if (!randinit) { randinit = 1; #ifdef __FreeBSD__ - if (srandomdev() < 0) + srandomdev(); +#else + srandom((unsigned long) (time(NULL) ^ getpid())); #endif - srandom((unsigned long) (time(NULL) ^ getpid())); } l = (random() % 8 + 8); /* 8 - 16 chars */ pw_getrand(rndbuf, l); |