Since we drop NSHUFF values now, set default seed to what it becomes

after srand(1)
This commit is contained in:
ache 2003-02-05 21:25:50 +00:00
parent 1be933f329
commit 601bb3d375

View File

@ -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();
}