From a26f4b9a9a4e96ba88214e50dd49783aa1695559 Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 13 Mar 2012 17:45:07 -0400 Subject: Bug #1389 - readd RNG seed in the config and start DNS query ids off on a random number --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/init.cpp') diff --git a/src/init.cpp b/src/init.cpp index 1b31c0682..4fc9c1eef 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -472,7 +472,7 @@ void Init(int ac, char **av) InitLanguages(); /* Initialize random number generator */ - srand(time(NULL)); + srand(Config->Seed); /* load modules */ Log() << "Loading modules..."; -- cgit