diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2002-08-20 17:57:07 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2002-08-20 17:57:07 +0000 |
commit | 1ceb135b6c70272518f3d3ee54a651e204085e4c (patch) | |
tree | 97bfe5dc2709539b743ade70f55fdd616fff2a46 /source3/script | |
parent | d19e6edc0199562563f5548d0144a80cc5c8368e (diff) | |
download | samba-1ceb135b6c70272518f3d3ee54a651e204085e4c.tar.gz samba-1ceb135b6c70272518f3d3ee54a651e204085e4c.tar.xz samba-1ceb135b6c70272518f3d3ee54a651e204085e4c.zip |
Don't report missing "-valid"
(This used to be commit f9018f4560c205033d25e6294534be4b7a79f6c1)
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/find_missing_doc.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/find_missing_doc.pl b/source3/script/find_missing_doc.pl index 4d22e20a29d..89385baaa2c 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 ""; } |