diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-02-27 02:17:54 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-02-27 02:17:54 +0000 |
commit | 742dcedfa2d5ae6361e62cb057e87eb54eb46d26 (patch) | |
tree | 14250f6b1bc37cbcdc4b43412f8d9dbf3f6d3290 /source3 | |
parent | d21b15ff57aa39337e76a06da74a55e48f4b0696 (diff) | |
download | samba-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')
-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 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; |