From 44246b4c36d3e17cf11281ff0de624fcb58ba393 Mon Sep 17 00:00:00 2001 From: Xin LI Date: Mon, 15 Apr 2013 05:39:21 +0000 Subject: [PATCH] Use arc4random() instead of random(). MFC after: 2 weeks --- sbin/growfs/growfs.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/sbin/growfs/growfs.c b/sbin/growfs/growfs.c index 745e9e97557..fe49efbb4a2 100644 --- a/sbin/growfs/growfs.c +++ b/sbin/growfs/growfs.c @@ -141,14 +141,9 @@ growfs(int fsi, int fso, unsigned int Nflag) uint cylno; int i, j, width; char tmpbuf[100]; - static int randinit = 0; DBG_ENTER; - if (!randinit) { - randinit = 1; - srandomdev(); - } time(&modtime); /* @@ -407,7 +402,7 @@ initcg(int cylno, time_t modtime, int fso, unsigned int Nflag) i += sblock.fs_frag) { dp1 = (struct ufs1_dinode *)(void *)iobuf; for (j = 0; j < INOPB(&sblock); j++) { - dp1->di_gen = random(); + dp1->di_gen = arc4random(); dp1++; } wtfs(fsbtodb(&sblock, cgimin(&sblock, cylno) + i),