From 1b0d1bf7f177f1a0c979af8e4abbd6ed45d464d7 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Sat, 5 Oct 2019 14:03:57 -0400 Subject: [PATCH] Fix broken links, mainly typo's Also tweak find-doc-nits while fixing a bug (don't need .in files) Reviewed-by: Tomas Mraz Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/10239) --- 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, L +L, L =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 and L. OP_cipher_cipher() performs encryption/decryption using the provider side cipher context in the I 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. 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, -L and L. +L and L. All "functions" mentioned here are passed as function pointers between F and the provider in B 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(); -- 2.34.1