summaryrefslogtreecommitdiff
path: root/source3/script
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2002-08-20 17:57:07 +0000
committerJelmer Vernooij <jelmer@samba.org>2002-08-20 17:57:07 +0000
commit1ceb135b6c70272518f3d3ee54a651e204085e4c (patch)
tree97bfe5dc2709539b743ade70f55fdd616fff2a46 /source3/script
parentd19e6edc0199562563f5548d0144a80cc5c8368e (diff)
downloadsamba-1ceb135b6c70272518f3d3ee54a651e204085e4c.tar.gz
samba-1ceb135b6c70272518f3d3ee54a651e204085e4c.tar.bz2
samba-1ceb135b6c70272518f3d3ee54a651e204085e4c.zip
Don't report missing "-valid"
(This used to be commit f9018f4560c205033d25e6294534be4b7a79f6c1)
Diffstat (limited to 'source3/script')
-rwxr-xr-xsource3/script/find_missing_doc.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/find_missing_doc.pl b/source3/script/find_missing_doc.pl
index 4d22e20a29..89385baaa2 100755
--- a/source3/script/find_missing_doc.pl
+++ b/source3/script/find_missing_doc.pl
@@ -39,5 +39,5 @@ foreach $ln (grep (/\<anchor\ id\=/, @doclines)) {
}
foreach (keys %params) {
- print "$_\n" if $params{$_} eq 'not_found';
+ print "$_\n" if $params{$_} eq 'not_found' and $_ cmp "valid" and $_ eq "";
}