projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8bc93d2
)
util/find-doc-nits: ignore tsget.pod name
author
Richard Levitte
<levitte@openssl.org>
Wed, 2 Oct 2019 17:41:20 +0000
(19:41 +0200)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 9 Oct 2019 08:45:10 +0000
(10:45 +0200)
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)
util/find-doc-nits
patch
|
blob
|
history
diff --git
a/util/find-doc-nits
b/util/find-doc-nits
index ea5254b729a1349cac51f70901e5867be8962777..eac87dedd0cb561c564e7a56dbf7a5adaf508d09 100755
(executable)
--- 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-/;
}
}