]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
s/random()/rand()/, sorry
authordivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 28 May 2009 10:49:43 +0000 (10:49 +0000)
committerdivverent <divverent@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 28 May 2009 10:49:43 +0000 (10:49 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8993 d7cf8633-e32d-0410-b094-e92efae38249

host_cmd.c

index adceca5e7bf9a106da2a675ec36889a67bba6b22..1d474610ce6e3c5d0c3f5fe5ab0a1380ee9c8286 100644 (file)
@@ -2399,7 +2399,7 @@ void Host_Rcon_f (void) // credit: taken from QuakeWorld
                {
                        char buf[1500];
                        char argbuf[1500];
-                       dpsnprintf(argbuf, sizeof(argbuf), "%ld.%06d %s", (long) time(NULL), (int) (random() % 1000000), Cmd_Args());
+                       dpsnprintf(argbuf, sizeof(argbuf), "%ld.%06d %s", (long) time(NULL), (int) (rand() % 1000000), Cmd_Args());
                        memcpy(buf, "\377\377\377\377srcon HMAC-MD4 TIME ", 24);
                        if(HMAC_MDFOUR_16BYTES((unsigned char *) (buf + 24), (unsigned char *) argbuf, strlen(argbuf), (unsigned char *) rcon_password.string, strlen(rcon_password.string)))
                        {