*** 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

@ -1,13 +1,14 @@
Version NEXT Version NEXT
use getopt from stdio.h instead of getopt.h in fspscan.c use getopt from stdio.h instead of getopt.h in fspscan.c
fspscan now compiles on AIX and other OS without glibc (hoaxter) fspscan now compiles on AIX and other OS without glibc (hoaxter)
!! fixed fatal bug from b23. Server sends large packets to clients if !! fixed fatal bug from b23. Server sends large packets to clients if
client request has not prefered reply size inside. This confuses client request has not prefered reply size inside. This confuses
all old fsp clients. all old fsp clients.
common/strdup.c removed common/strdup.c removed
bsd_src/function.c bcopy -> memmove bsd_src/function.c bcopy -> memmove
removed STDC_HEADER checks, drop support for pre-ANSI compilers removed STDC_HEADER checks, drop support for pre-ANSI compilers
started work on alternate SCons based build system 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 Version 2.8.1b23 - 14 Jan 2005
use srandomdev for seeding of client seq. number generator use srandomdev for seeding of client seq. number generator

View File

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