From 6f02932edba62186a6866e8c9f0f0714674f6bab Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 2 Oct 2019 19:41:20 +0200 Subject: [PATCH] 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) --- util/find-doc-nits | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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-/; } } -- 2.25.1