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_0_2q~30 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3c55cb200a416fa796f117410c189c577b57a36f;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) (cherry picked from commit 785e614a95a134831f213749332bcf40c4920f69) (cherry picked from commit e25fc6b5b2b99ed02f8966192c94c820b6f69add) --- diff --git a/doc/apps/crl.pod b/doc/apps/crl.pod index cdced1c742..92efbf4860 100644 --- a/doc/apps/crl.pod +++ b/doc/apps/crl.pod @@ -115,7 +115,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