summaryrefslogtreecommitdiffstats
path: root/source/script
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-02-27 02:17:54 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-02-27 02:17:54 +0000
commit7c00fff475e15a9e9d5c3d2c8394a2cdc1b90cac (patch)
tree8666e1fb5935b572374b9a0da32335d497b3d276 /source/script
parentf8f21653225792c0001d183c6efe8b7d89a0785d (diff)
downloadsamba-7c00fff475e15a9e9d5c3d2c8394a2cdc1b90cac.tar.gz
samba-7c00fff475e15a9e9d5c3d2c8394a2cdc1b90cac.tar.xz
samba-7c00fff475e15a9e9d5c3d2c8394a2cdc1b90cac.zip
We now use <anchor/> instead of just <anchor> (strict XML syntax)
Diffstat (limited to 'source/script')
-rwxr-xr-xsource/script/find_missing_doc.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/find_missing_doc.pl b/source/script/find_missing_doc.pl
index b5824465697..b27a405e4dd 100755
--- a/source/script/find_missing_doc.pl
+++ b/source/script/find_missing_doc.pl
@@ -30,7 +30,7 @@ close(IN);
open(IN,$topdir.$doc_file) || die("Can't open $topdir$doc_file");
while(<IN>) {
- if( /<term><anchor id="([^"]*)">([^<]*?)([ ]*)\(.\)([ ]*)<\/term>/g ) {
+ if( /<term><anchor id="([^"]*)"\/>([^<]*?)([ ]*)\(.\)([ ]*)<\/term>/g ) {
$key = $1;
$value = $2;
$doc{$value} = $key;