summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-10-02 19:41:20 +0200
committerRichard Levitte <levitte@openssl.org>2019-10-09 10:45:10 +0200
commit6f02932edba62186a6866e8c9f0f0714674f6bab (patch)
tree2db1b59b9cf618c5e4b0bd40d61452b59e8dde3f /util
parent8bc93d2f220de9750c6934d8d2f2346d14616180 (diff)
util/find-doc-nits: ignore tsget.pod name
It's a separate script, not an openssl sub-command Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/10065)
Diffstat (limited to 'util')
-rwxr-xr-xutil/find-doc-nits2
1 files changed, 1 insertions, 1 deletions
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-/;
}
}