summaryrefslogtreecommitdiffstats
path: root/pw/pw_user.c
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1997-06-14 00:27:03 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1997-06-14 00:27:03 +0000
commite783725950e27706e62997f4704912eaa0f9aef5 (patch)
tree7630dc99f54731e50c1c071627197ee84c59032d /pw/pw_user.c
parent721e8ecc12a0bca0a30d7f4b5b77c8b51fb65c02 (diff)
downloadpw-darwin-e783725950e27706e62997f4704912eaa0f9aef5.tar.gz
pw-darwin-e783725950e27706e62997f4704912eaa0f9aef5.tar.zst
pw-darwin-e783725950e27706e62997f4704912eaa0f9aef5.zip
Remove srandomdev fallback code
Diffstat (limited to 'pw/pw_user.c')
-rw-r--r--pw/pw_user.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/pw/pw_user.c b/pw/pw_user.c
index b478c7b..b7f146d 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.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);