From: Lutz Jänicke Date: Sat, 3 Feb 2001 10:59:13 +0000 (+0000) Subject: If the source has already been succesfully queried, do not try to open it X-Git-Tag: OpenSSL_0_9_6a-beta1~66^2~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=08f3f07212954e711fd91d60b7a4417b8c42d0f8;p=oweals%2Fopenssl.git If the source has already been succesfully queried, do not try to open it again as file. --- diff --git a/apps/app_rand.c b/apps/app_rand.c index 2126fd5aa1..9d6d5fbf6f 100644 --- a/apps/app_rand.c +++ b/apps/app_rand.c @@ -180,8 +180,10 @@ long app_RAND_load_files(char *name) if (*n == '\0') break; egd=RAND_egd(n); - if (egd > 0) tot+=egd; - tot+=RAND_load_file(n,-1); + if (egd > 0) + tot+=egd; + else + tot+=RAND_load_file(n,-1); if (last) break; } if (tot > 512)