From 3de5a7745f3dc2c559602d67c30cd219a984104a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lutz=20J=C3=A4nicke?= Date: Tue, 20 May 2008 08:10:48 +0000 Subject: [PATCH] Correctly adjust location of comment Submitted by: Ben Laurie --- crypto/rand/randfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/rand/randfile.c b/crypto/rand/randfile.c index 7468eaa578..0c7f9e6dfb 100644 --- a/crypto/rand/randfile.c +++ b/crypto/rand/randfile.c @@ -128,10 +128,10 @@ int RAND_load_file(const char *file, long bytes) n = BUFSIZE; i=fread(buf,1,n,in); if (i <= 0) break; - /* even if n != i, use the full array */ #ifdef PURIFY RAND_add(buf,i,(double)i); #else + /* even if n != i, use the full array */ RAND_add(buf,n,(double)i); #endif ret+=i; -- 2.25.1