summaryrefslogtreecommitdiff
path: root/source3/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
commit742dcedfa2d5ae6361e62cb057e87eb54eb46d26 (patch)
tree14250f6b1bc37cbcdc4b43412f8d9dbf3f6d3290 /source3/script
parentd21b15ff57aa39337e76a06da74a55e48f4b0696 (diff)
downloadsamba-742dcedfa2d5ae6361e62cb057e87eb54eb46d26.tar.gz
samba-742dcedfa2d5ae6361e62cb057e87eb54eb46d26.tar.bz2
samba-742dcedfa2d5ae6361e62cb057e87eb54eb46d26.zip
We now use <anchor/> instead of just <anchor> (strict XML syntax)
(This used to be commit 7c00fff475e15a9e9d5c3d2c8394a2cdc1b90cac)
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 b582446569..b27a405e4d 100755
--- a/source3/script/find_missing_doc.pl
+++ b/source3/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;