*** empty log message ***

This commit is contained in:
hsn 2005-02-16 17:30:57 +00:00
parent 6b4ebebd51
commit 47c811eb02
2 changed files with 4 additions and 3 deletions

View File

@ -8,6 +8,7 @@ Version NEXT
bsd_src/function.c bcopy -> memmove
removed STDC_HEADER checks, drop support for pre-ANSI compilers
started work on alternate SCons based build system
fspd: use urandom, not random -> avoid hangs on Lin suck 2.6
Version 2.8.1b23 - 14 Jan 2005
use srandomdev for seeding of client seq. number generator

View File

@ -137,7 +137,7 @@ static void init_random (void)
unsigned int seed;
FILE *f;
f=fopen("/dev/random","rb");
f=fopen("/dev/urandom","rb");
if(f)
{
fread(&seed,sizeof(unsigned int),1,f);