From: Richard Levitte Date: Wed, 2 Oct 2019 17:41:20 +0000 (+0200) Subject: util/find-doc-nits: ignore tsget.pod name X-Git-Tag: openssl-3.0.0-alpha1~1182 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=6f02932edba62186a6866e8c9f0f0714674f6bab;ds=inline util/find-doc-nits: ignore tsget.pod name It's a separate script, not an openssl sub-command Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/10065) --- diff --git a/util/find-doc-nits b/util/find-doc-nits index ea5254b729..eac87dedd0 100755 --- a/util/find-doc-nits +++ b/util/find-doc-nits @@ -884,7 +884,7 @@ if ( $opt_n ) { # If not given args, check that all man1 commands are named properly. if ( scalar @ARGV == 0 ) { foreach (glob('doc/man1/*.pod')) { - next if /CA.pl/ || /openssl.pod/; + next if /CA.pl/ || /openssl\.pod/ || /tsget\.pod/; err("$_ doesn't start with openssl-") unless /openssl-/; } }