Fix #65, randomize rand_seed on startup

This commit is contained in:
Erik Ekman 2009-07-23 07:03:09 +00:00
parent 50272de2b8
commit 44ed20fee5
1 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,7 @@
#include <sys/time.h>
#include <fcntl.h>
#include <zlib.h>
#include <time.h>
#ifdef WINDOWS32
#include "windows.h"
@ -1184,6 +1185,9 @@ main(int argc, char **argv)
WSAStartup(req_version, &wsa_data);
#endif
srand((unsigned) time(NULL));
rand_seed = rand();
#if !defined(BSD) && !defined(__GLIBC__)
__progname = strrchr(argv[0], '/');
if (__progname == NULL)