mirror of
https://github.com/openssl/openssl.git
synced 2024-11-25 19:13:48 +08:00
Diagnose errors.
This commit is contained in:
parent
29d2824788
commit
9f7646da25
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user