summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/md5calc.c3
-rw-r--r--src/common/random.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/common/md5calc.c b/src/common/md5calc.c
index 2178739d6..05fde42cc 100644
--- a/src/common/md5calc.c
+++ b/src/common/md5calc.c
@@ -6,6 +6,7 @@
*
***********************************************************/
+#include "../common/random.h"
#include "md5calc.h"
#include <string.h>
#include <stdio.h>
@@ -234,6 +235,6 @@ void MD5_Salt(unsigned int len, char * output)
{
unsigned int i;
for( i = 0; i < len; ++i )
- output[i] = (char)(1 + rand() % 255);
+ output[i] = (char)(1 + rnd() % 255);
}
diff --git a/src/common/random.c b/src/common/random.c
index b7f2c080c..6bdcaca2f 100644
--- a/src/common/random.c
+++ b/src/common/random.c
@@ -1,6 +1,7 @@
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder
+#include "../common/showmsg.h"
#include "../common/timer.h" // gettick
#include "random.h"
#if defined(WIN32)
@@ -30,6 +31,7 @@ void rnd_init(void)
seed += (uint32)gettid();
#endif // HAVE_GETTID
#endif
+ ShowInfo("Initializing random number generator.\n")
init_genrand(seed);
}