Stop spurious "unable to load config info" errors in req
This commit is contained in:
parent
cf3a5cebd7
commit
6ca487992b
2 changed files with 7 additions and 2 deletions
|
@ -274,7 +274,12 @@ int main(int Argc, char *Argv[])
|
|||
|
||||
config=NCONF_new(NULL);
|
||||
i=NCONF_load(config,p,&errline);
|
||||
if (i == 0) ERR_clear_error();
|
||||
if (i == 0)
|
||||
{
|
||||
NCONF_free(config);
|
||||
config = NULL;
|
||||
ERR_clear_error();
|
||||
}
|
||||
|
||||
prog=prog_init();
|
||||
|
||||
|
|
|
@ -479,7 +479,7 @@ bad:
|
|||
req_conf=config;
|
||||
BIO_printf(bio_err,"Using configuration from %s\n",
|
||||
default_config_file);
|
||||
if (i == 0)
|
||||
if (req_conf == NULL)
|
||||
{
|
||||
BIO_printf(bio_err,"Unable to load config info\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue