From: Rich Salz Date: Sat, 5 Oct 2019 22:14:30 +0000 (-0400) Subject: Various missing-link fixes X-Git-Tag: openssl-3.0.0-alpha1~824 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2b194d78f16493d2eb12bcce285537fcb538bfb;p=thirdparty%2Fopenssl.git Various missing-link fixes Also, turn missing L into foo(3) Reviewed-by: Richard Levitte Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/10104) --- diff --git a/doc/internal/man3/ossl_algorithm_do_all.pod b/doc/internal/man3/ossl_algorithm_do_all.pod index 6ef85a72593..ce925d32954 100644 --- a/doc/internal/man3/ossl_algorithm_do_all.pod +++ b/doc/internal/man3/ossl_algorithm_do_all.pod @@ -41,11 +41,11 @@ The function described here are mainly useful for discovery, and possibly display of what has been discovered, for example an application that wants to display the loaded providers and what they may offer, but also for constructors, such as -L. +L. =head1 SEE ALSO -L, L +L, L =head1 HISTORY diff --git a/doc/man1/openssl-cmds.pod b/doc/man1/openssl-cmds.pod index 9f7d6c654d4..3d3520059c2 100644 --- a/doc/man1/openssl-cmds.pod +++ b/doc/man1/openssl-cmds.pod @@ -53,6 +53,8 @@ version, x509 - OpenSSL application commands +=for comment foreign manuals: apropos(1) + =head1 SYNOPSIS =for openssl generic diff --git a/doc/man7/EVP_KDF-KB.pod b/doc/man7/EVP_KDF-KB.pod index 8b1b3507595..8a84a3d044f 100644 --- a/doc/man7/EVP_KDF-KB.pod +++ b/doc/man7/EVP_KDF-KB.pod @@ -136,9 +136,7 @@ NIST SP800-108, IETF RFC 6803, IETF RFC 8009. =head1 SEE ALSO L, -L, L, -L, L, L, L diff --git a/doc/man7/provider.pod b/doc/man7/provider.pod index b6c5e49f50f..0e9019960d9 100644 --- a/doc/man7/provider.pod +++ b/doc/man7/provider.pod @@ -218,7 +218,7 @@ L, the actual implementation to be used is fetched implicitly using default search criteria. Implicit fetching can also occur with functions such as -L where a NULL algorithm parameter is +L where a NULL algorithm parameter is supplied. In this case an algorithm implementation is implicitly fetched using default search criteria and an algorithm name that is consistent with diff --git a/util/find-doc-nits b/util/find-doc-nits index 34eb514a1fc..91e232376e7 100755 --- a/util/find-doc-nits +++ b/util/find-doc-nits @@ -727,14 +727,13 @@ sub collectnames { map { s/^\s+//g; s/\s+$//g; $_ } # Trim prefix and suffix blanks split(/,/, $tmp); unless ( grep { $simplename eq $_ } @names ) { - err($id, "missing $simplename"); + err($id, "$simplename not in NAME section"); push @names, $simplename; } foreach my $name (@names) { next if $name eq ""; - if ( $name =~ /\s/ ) { - err($id, "'$name' contains white space") - } + err($id, "'$name' contains white space") + if $name =~ /\s/; my $name_sec = "$name($section)"; if ( !exists $name_map{$name_sec} ) { $name_map{$name_sec} = $filename;