From 072f2a0f5b6a9a8b0eb6499bc8454af374cf2e99 Mon Sep 17 00:00:00 2001 From: dholland Date: Mon, 25 May 2009 00:37:27 +0000 Subject: Use random() instead of rand(), so we get something like random numbers out. This changes the "tournament codes"; that is, the same code will give you a different game now from what it used to. (This is because the codes are basically random seeds.) I really really doubt anyone cares about this, especially since the tournament feature appears to be undocumented. --- trek/main.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'trek/main.c') diff --git a/trek/main.c b/trek/main.c index bbf327db..3c55293f 100644 --- a/trek/main.c +++ b/trek/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.21 2009/05/25 00:29:08 dholland Exp $ */ +/* $NetBSD: main.c,v 1.22 2009/05/25 00:37:27 dholland Exp $ */ /* * Copyright (c) 1980, 1993 @@ -39,13 +39,12 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\ #if 0 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: main.c,v 1.21 2009/05/25 00:29:08 dholland Exp $"); +__RCSID("$NetBSD: main.c,v 1.22 2009/05/25 00:37:27 dholland Exp $"); #endif #endif /* not lint */ #include #include -#include #include #include #include @@ -165,8 +164,6 @@ int main(int, char **); int main(int argc, char **argv) { - time_t curtime; - long vect; int ch; /* Revoke setgid privileges */ @@ -175,9 +172,7 @@ main(int argc, char **argv) /* Default to fast mode */ Etc.fast = 1; - time(&curtime); - vect = (long) curtime; - srand(vect); + srandom((long) time(NULL)); while ((ch = getopt(argc, argv, "fst")) != -1) { switch (ch) { -- cgit v1.2.3-56-ge451