[openssl] master update

Richard Levitte levitte at openssl.org
Fri Oct 25 14:56:23 UTC 2019


The branch master has been updated
       via  1b0d1bf7f177f1a0c979af8e4abbd6ed45d464d7 (commit)
      from  40dfb8c70514006868344eaabf057aac6a428145 (commit)


- Log -----------------------------------------------------------------
commit 1b0d1bf7f177f1a0c979af8e4abbd6ed45d464d7
Author: Rich Salz <rsalz at akamai.com>
Date:   Sat Oct 5 14:03:57 2019 -0400

    Fix broken links, mainly typo's
    
    Also tweak find-doc-nits while fixing a bug (don't need .in files)
    
    Reviewed-by: Tomas Mraz <tmraz at fedoraproject.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/10239)

-----------------------------------------------------------------------

Summary of changes:
 doc/man3/OSSL_PARAM_construct_from_text.pod | 2 +-
 doc/man5/fips_config.pod                    | 2 +-
 doc/man7/provider-cipher.pod                | 2 +-
 doc/man7/provider-mac.pod                   | 2 +-
 util/find-doc-nits                          | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/doc/man3/OSSL_PARAM_construct_from_text.pod b/doc/man3/OSSL_PARAM_construct_from_text.pod
index 75ab58e710..7e6c3e9193 100644
--- a/doc/man3/OSSL_PARAM_construct_from_text.pod
+++ b/doc/man3/OSSL_PARAM_construct_from_text.pod
@@ -155,7 +155,7 @@ Can be written like this instead:
 
 =head1 SEE ALSO
 
-L<OSSL_PARAM(3)>, L<OSSL_PARAM_TYPE(3)>
+L<OSSL_PARAM(3)>, L<OSSL_PARAM_int(3)>
 
 =head1 COPYRIGHT
 
diff --git a/doc/man5/fips_config.pod b/doc/man5/fips_config.pod
index 7f08fd06ff..0fb7e3ef1e 100644
--- a/doc/man5/fips_config.pod
+++ b/doc/man5/fips_config.pod
@@ -2,7 +2,7 @@
 
 =head1 NAME
 
-OPENSSL FIPS CONFIGURATION
+fips_config - OpenSSL FIPS configuration
 
 =head1 DESCRIPTION
 
diff --git a/doc/man7/provider-cipher.pod b/doc/man7/provider-cipher.pod
index e1312b31eb..cd9e0fd8a9 100644
--- a/doc/man7/provider-cipher.pod
+++ b/doc/man7/provider-cipher.pod
@@ -159,7 +159,7 @@ L<EVP_EncryptFinal(3)> and L<EVP_DecryptFinal(3)>.
 
 OP_cipher_cipher() performs encryption/decryption using the provider side cipher
 context in the I<cctx> parameter that should have been previously initialised via
-a call to OP_cipher_encrypt_init() or OP_cipher_decrypt_init.
+a call to OP_cipher_encrypt_init() or OP_cipher_decrypt_init().
 This should call the raw underlying cipher function without any padding.
 This will be invoked in the provider as a result of the application calling
 L<EVP_Cipher(3)>.
diff --git a/doc/man7/provider-mac.pod b/doc/man7/provider-mac.pod
index ef6837426a..1a2e43130b 100644
--- a/doc/man7/provider-mac.pod
+++ b/doc/man7/provider-mac.pod
@@ -44,7 +44,7 @@ for further information.
 
 The MAC operation enables providers to implement mac algorithms and make
 them available to applications via the API functions L<EVP_MAC_init(3)>,
-L<EVP_MACM_update(3)> and L<EVP_MAC_final(3)>.
+L<EVP_MAC_update(3)> and L<EVP_MAC_final(3)>.
 
 All "functions" mentioned here are passed as function pointers between
 F<libcrypto> and the provider in B<OSSL_DISPATCH> arrays via
diff --git a/util/find-doc-nits b/util/find-doc-nits
index f1841d8a8a..12d832b4da 100755
--- a/util/find-doc-nits
+++ b/util/find-doc-nits
@@ -872,7 +872,7 @@ if ( $opt_c ) {
 }
 
 if ( $opt_l ) {
-    foreach ( @ARGV ? @ARGV : glob('doc/*/*.pod doc/internal/*/*.pod') ) {
+    foreach ( glob('doc/*/*.pod doc/internal/*/*.pod') ) {
         collectnames($_);
     }
     checklinks();


More information about the openssl-commits mailing list