From aa77268b4f7b902d0b9cc45880341e1901ed5517 Mon Sep 17 00:00:00 2001 From: tg Date: Mon, 24 May 2004 22:05:25 +0000 Subject: [PATCH] mergo missed to commit --- rnd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rnd.c b/rnd.c index e74257a..a4247eb 100644 --- a/rnd.c +++ b/rnd.c @@ -1,4 +1,4 @@ -/* $MirBSD: rnd.c,v 1.3 2004/05/24 20:48:08 tg Exp $ +/* $MirBSD: rnd.c,v 1.4 2004/05/24 22:05:25 tg Exp $ *- * Copyright (c) 2004 * Thorsten Glaser @@ -33,7 +33,7 @@ int rnd_state; void rnd_seed(long newval) { - rnd_put(time(NULL) ^ (getpid() << 16) ^ newval); + rnd_put(newval); rnd_state = 0; }