Commit ff4e9d91 authored by Richard Levitte's avatar Richard Levitte
Browse files

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.
parent ce2d00b2
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -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)
			{