From: Jakub Wilk Date: Mon, 3 Sep 2018 09:09:51 +0000 (+0200) Subject: Fix example in crl(1) man page X-Git-Tag: OpenSSL_1_1_1~57 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=785e614a95a134831f213749332bcf40c4920f69;p=oweals%2Fopenssl.git Fix example in crl(1) man page The default input format is PEM, so explicit "-inform DER" is needed to read DER-encoded CRL. CLA: trivial Reviewed-by: Paul Yang Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/7094) --- diff --git a/doc/man1/crl.pod b/doc/man1/crl.pod index 9a009675d8..29f46001d6 100644 --- a/doc/man1/crl.pod +++ b/doc/man1/crl.pod @@ -120,7 +120,7 @@ Convert a CRL file from PEM to DER: Output the text form of a DER encoded certificate: - openssl crl -in crl.der -text -noout + openssl crl -in crl.der -inform DER -text -noout =head1 BUGS