From 08f3f07212954e711fd91d60b7a4417b8c42d0f8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lutz=20J=C3=A4nicke?= Date: Sat, 3 Feb 2001 10:59:13 +0000 Subject: [PATCH] If the source has already been succesfully queried, do not try to open it again as file. --- apps/app_rand.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) -- 2.34.1