Commit a95d7574 authored by Rich Salz's avatar Rich Salz
Browse files

Various doc fixes



Fix a =head1 section name
Fix a typo in POD label
Remove a spurious =back
Add a missing blank line
Avoid 'legacy' -- use 'deprecated' if still needed if we cannot just reword.
Always do strict checking
Do not warn about missing "RETURN VALUES" unless -s is set.
Change OpenSSL version 1.1 -> 1.1.0

Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3830)
parent b43c3765
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -188,11 +188,10 @@ for more information.

=item B<-msie_hack>

This is a legacy option to make B<ca> work with very old versions of
This is a deprecated option to make B<ca> work with very old versions of
the IE certificate enrollment control "certenr3". It used UniversalStrings
for almost everything. Since the old control has various security bugs
its use is strongly discouraged. The newer control "Xenroll" does not
need this option.
its use is strongly discouraged.

=item B<-preserveDN>

+1 −1
Original line number Diff line number Diff line
@@ -349,7 +349,7 @@ certain parameters. So if, for example, you want to use RC2 with a

=head1 HISTORY

The default digest was changed from MD5 to SHA256 in Openssl 1.1.
The default digest was changed from MD5 to SHA256 in Openssl 1.1.0.

=head1 COPYRIGHT

+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ B<uri> ...
The B<storeutl> command can be used to display the contents (after decryption
as the case may be) fetched from the given URIs.

=head1 COMMAND OPTIONS
=head1 OPTIONS

=over 4

+2 −1
Original line number Diff line number Diff line
@@ -32,7 +32,8 @@ ASN1_tag2str() returns a human-readable name of the specified ASN.1 B<tag>.

=head1 NOTES

ASN1_STRING_print() is a legacy function which should be avoided in new applications.
ASN1_STRING_print() is a deprecated function which should be avoided; use
ASN1_STRING_print_ex() instead.

Although there are a large number of options frequently B<ASN1_STRFLGS_RFC2253> is
suitable, or on UTF8 terminals B<ASN1_STRFLGS_RFC2253 & ~ASN1_STRFLGS_ESC_MSB>.
+2 −2
Original line number Diff line number Diff line
@@ -93,8 +93,8 @@ error.
=head1 HISTORY

BIO_gethostname(), BIO_get_port(), BIO_get_host_ip(),
BIO_get_accept_socket() and BIO_accept() are deprecated since OpenSSL
1.1.  Use the functions described above instead.
BIO_get_accept_socket() and BIO_accept() were deprecated in
OpenSSL 1.1.0.  Use the functions described above instead.

=head1 SEE ALSO

Loading