Fix `openssl crl -noout -text' combination where `-noout' killed the `-text' option at all and this way the `-noout -text' combination was inconsistent in `openssl crl' with the friends in `openssl x509|rsa|dsa'.
diff --git a/apps/crl.c b/apps/crl.c index a35e857..3bb7aae 100644 --- a/apps/crl.c +++ b/apps/crl.c
@@ -221,8 +221,6 @@ } } - if (noout) goto end; - out=BIO_new(BIO_s_file()); if (out == NULL) { @@ -242,6 +240,9 @@ } if (text) X509_CRL_print(out, x); + + if (noout) goto end; + if (outformat == FORMAT_ASN1) i=(int)i2d_X509_CRL_bio(out,x); else if (outformat == FORMAT_PEM)