Since we drop NSHUFF values now, set default seed to what it becomes
after srand(1)
This commit is contained in:
parent
1be933f329
commit
601bb3d375
@ -98,12 +98,12 @@ rand_r(unsigned int *ctx)
|
||||
}
|
||||
|
||||
|
||||
static u_long next = 1;
|
||||
static u_long next = 892053144; /* after srand(1), NSHUFF counted */
|
||||
|
||||
int
|
||||
rand()
|
||||
{
|
||||
return do_rand(&next);
|
||||
return (do_rand(&next));
|
||||
}
|
||||
|
||||
void
|
||||
@ -114,7 +114,7 @@ u_int seed;
|
||||
|
||||
next = seed;
|
||||
for (i = 0; i < NSHUFF; i++)
|
||||
(void)do_rand(&next);
|
||||
(void)rand();
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user