Diagnose errors.

This commit is contained in:
Ben Laurie 1999-02-06 15:20:44 +00:00
parent 29d2824788
commit 9f7646da25

View File

@ -660,7 +660,13 @@ loop:
/* Add extensions */
if(extensions && !X509V3_EXT_add_conf(req_conf,
&ext_ctx, extensions, x509ss)) goto end;
&ext_ctx, extensions, x509ss))
{
BIO_printf(bio_err,
"Error Loading extension section %s\n",
extensions);
goto end;
}
if (!(i=X509_sign(x509ss,pkey,digest)))
goto end;