Commit 9f7646da authored by Ben Laurie's avatar Ben Laurie
Browse files

Diagnose errors.

parent 29d28247
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -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;