From ff4e9d91d94d8065e70ba5e6760346b33bba9654 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 22 Jun 2000 21:16:01 +0000 Subject: [PATCH 1/1] Change req so the new parameter '-rand file' uses the given file in addition to the file given through the RANDFILE option or environment variable. --- apps/req.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/apps/req.c b/apps/req.c index b9b19b8312..4b9c3a1ed8 100644 --- a/apps/req.c +++ b/apps/req.c @@ -552,13 +552,10 @@ bad: if (newreq && (pkey == NULL)) { - char *randfile; - - if (inrand) - randfile = inrand; - else - randfile = CONF_get_string(req_conf,SECTION,"RANDFILE"); + char *randfile = CONF_get_string(req_conf,SECTION,"RANDFILE"); app_RAND_load_file(randfile, bio_err, 0); + if (inrand) + app_RAND_load_files(inrand); if (newkey <= 0) { -- 2.34.1