mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-08 02:19:18 +02:00
Fix #65, randomize rand_seed on startup
This commit is contained in:
parent
50272de2b8
commit
44ed20fee5
|
@ -25,6 +25,7 @@
|
|||
#include <sys/time.h>
|
||||
#include <fcntl.h>
|
||||
#include <zlib.h>
|
||||
#include <time.h>
|
||||
|
||||
#ifdef WINDOWS32
|
||||
#include "windows.h"
|
||||
|
@ -1183,6 +1184,9 @@ main(int argc, char **argv)
|
|||
#ifdef WINDOWS32
|
||||
WSAStartup(req_version, &wsa_data);
|
||||
#endif
|
||||
|
||||
srand((unsigned) time(NULL));
|
||||
rand_seed = rand();
|
||||
|
||||
#if !defined(BSD) && !defined(__GLIBC__)
|
||||
__progname = strrchr(argv[0], '/');
|
||||
|
|
Loading…
Reference in New Issue