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 | f9018f4560c205033d25e6294534be4b7a79f6c1 (patch) | |
tree | 404bca3934b64562ee2ef7a654d89af2a2622481 /source/script | |
parent | 92408c822033c9d0e604d9696cf629d4665aa9ee (diff) | |
download | samba-f9018f4560c205033d25e6294534be4b7a79f6c1.tar.gz samba-f9018f4560c205033d25e6294534be4b7a79f6c1.tar.xz samba-f9018f4560c205033d25e6294534be4b7a79f6c1.zip |
Don't report missing "-valid"
Diffstat (limited to 'source/script')
-rwxr-xr-x | source/script/find_missing_doc.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/find_missing_doc.pl b/source/script/find_missing_doc.pl index 4d22e20a29d..89385baaa2c 100755 --- a/source/script/find_missing_doc.pl +++ b/source/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 ""; } |