Correctly adjust location of comment
[openssl.git] / crypto / rand / randfile.c
index 43053b19bf8679b878d026760e5d5877fb715519..0c7f9e6dfb30c7fad0ccff2070d8346477904671 100644 (file)
@@ -128,8 +128,12 @@ int RAND_load_file(const char *file, long bytes)
                        n = BUFSIZE;
                i=fread(buf,1,n,in);
                if (i <= 0) break;
+#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;
                if (bytes > 0)
                        {