mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
Don't return an error with crl -noout.
PR:917 Sumbmitted by: Michael Konietzka <konietzka@schlund.de>
This commit is contained in:
parent
68d9e764cb
commit
10f92aac33
@ -355,7 +355,11 @@ bad:
|
||||
|
||||
if (text) X509_CRL_print(out, x);
|
||||
|
||||
if (noout) goto end;
|
||||
if (noout)
|
||||
{
|
||||
ret = 0;
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (outformat == FORMAT_ASN1)
|
||||
i=(int)i2d_X509_CRL_bio(out,x);
|
||||
|
Loading…
Reference in New Issue
Block a user