Various missing-link fixes
authorRich Salz <rsalz@akamai.com>
Sat, 5 Oct 2019 22:14:30 +0000 (18:14 -0400)
committerTomas Mraz <tmraz@fedoraproject.org>
Thu, 12 Dec 2019 15:55:02 +0000 (16:55 +0100)
Also, turn missing L<foo(3)> into foo(3)

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10104)

doc/internal/man3/ossl_algorithm_do_all.pod
doc/man1/openssl-cmds.pod
doc/man7/EVP_KDF-KB.pod
doc/man7/provider.pod
util/find-doc-nits

index 6ef85a725937734507996f79cf017477b5d02df4..ce925d32954b458dc2045908d3afc0202344147c 100644 (file)
@@ -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<ossl_construct_method(3)>.
+L<ossl_method_construct(3)>.
 
 =head1 SEE ALSO
 
-L<ossl_construct_method(3)>, L<EVP_MAC_do_all(3)>
+L<ossl_method_construct(3)>, L<EVP_MAC_do_all_provided(3)>
 
 =head1 HISTORY
 
index 9f7d6c654d4b4b3955875c32087082f81939d41c..3d3520059c25bc4d6c0a8b33dd424607a30d905a 100644 (file)
@@ -53,6 +53,8 @@ version,
 x509
 - OpenSSL application commands
 
+=for comment foreign manuals: apropos(1)
+
 =head1 SYNOPSIS
 
 =for openssl generic
index 8b1b35075955d390fd1ef3813bd9d104a5642b15..8a84a3d044f2d6e7db2842bb3571db165920900d 100644 (file)
@@ -136,9 +136,7 @@ NIST SP800-108, IETF RFC 6803, IETF RFC 8009.
 =head1 SEE ALSO
 
 L<EVP_KDF(3)>,
-L<EVP_KDF_CTX_new_id(3)>,
 L<EVP_KDF_CTX_free(3)>,
-L<EVP_KDF_ctrl(3)>,
 L<EVP_KDF_size(3)>,
 L<EVP_KDF_derive(3)>,
 L<EVP_KDF(3)/PARAMETERS>
index b6c5e49f50fcb7478fb186b9aee71165a2f94860..0e9019960d998d45591c83db148125c054da76d3 100644 (file)
@@ -218,7 +218,7 @@ L<EVP_CipherInit_ex(3)>, the actual implementation to be used is
 fetched implicitly using default search criteria.
 
 Implicit fetching can also occur with functions such as
-L<EVP_PKEY_CTX_derive_init_ex(3)> where a NULL algorithm parameter is
+L<EVP_PKEY_derive_init_ex(3)> 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
index 34eb514a1fc53364943bb8f33843fb49dc3470d3..91e232376e7f7ddd9ee284a572221436ce5d0f79 100755 (executable)
@@ -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;