There's no reason why app_RAND_load_file() should return 0 when
authorRichard Levitte <levitte@openssl.org>
Sat, 21 Oct 2000 22:43:07 +0000 (22:43 +0000)
committerRichard Levitte <levitte@openssl.org>
Sat, 21 Oct 2000 22:43:07 +0000 (22:43 +0000)
RAND_status() hasn't.
Reported by Dale Stimson <dale@accentre.com>.

apps/app_rand.c

index 1146f9f7f38ad986a38296cc68567569a41dafe6..c5d66a3b5fafedf22a705d04629c361638e971ad 100644 (file)
@@ -152,8 +152,8 @@ int app_RAND_load_file(const char *file, BIO *bio_e, int dont_warn)
                                BIO_printf(bio_e,"Consider setting the RANDFILE environment variable to point at a file that\n");
                                BIO_printf(bio_e,"'random' data can be kept in (the file will be overwritten).\n");
                                }
+                       return 0;
                        }
-               return 0;
                }
        seeded = 1;
        return 1;