From f3f3cc0ccaf528767942e6d151383209394cd7c4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Sun, 19 Mar 2000 17:20:26 +0000 Subject: [PATCH] oops. don't use "entropy" directly. --- crypto/rand/md_rand.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/rand/md_rand.c b/crypto/rand/md_rand.c index 9f8da22917..35bdbeb73e 100644 --- a/crypto/rand/md_rand.c +++ b/crypto/rand/md_rand.c @@ -1,4 +1,4 @@ -/* crypto/rand/md_rand.c */ +* crypto/rand/md_rand.c */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -593,8 +593,8 @@ int RAND_event(UINT iMsg, WPARAM wParam, LPARAM lParam) dx=lastx-x; dy=lasty-y; if (dx != 0 && dy != 0 && dx-lastdx != 0 && dy-lastdy != 0) - entropy += .2; - lastx=x,lasty=y; + add_entropy=.2; + lastx=x, lasty=y; lastdx=dx, lastdy=dy; } break; -- 2.25.1