summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-07 16:45:50 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-07 16:45:50 (GMT)
commit1e22626b787530e2e800bce3481f9dfdf3e1101c (patch)
treeb088915f8f0ce695812883e680010af806573763 /Source
parent7a18dd8edd5362f90e5f44c4885e58bf65f78546 (diff)
downloadCMake-1e22626b787530e2e800bce3481f9dfdf3e1101c.zip
CMake-1e22626b787530e2e800bce3481f9dfdf3e1101c.tar.gz
CMake-1e22626b787530e2e800bce3481f9dfdf3e1101c.tar.bz2
Fix xml
Diffstat (limited to 'Source')
-rw-r--r--Source/cmCTest.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 439da02..f174ea6 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -702,7 +702,7 @@ int cmCTest::UpdateDirectory()
<< "\t\t\t<PreviousRevision>" << srevision2 << "</PreviousRevision>\n"
<< "\t\t\t<Author>" << sauthor1<< "</Author>\n"
<< "\t\t\t<Date>" << sdate1 << "</Date>\n"
- << "\t\t\t<Comment>" << comment1 << "</Comment>\n"
+ << "\t\t\t<Comment>" << this->MakeXMLSafe(comment1) << "</Comment>\n"
<< "\t\t\t<Email>" << semail1 << "</Email>\n"
<< "\t\t</Revisions>\n"
<< "\t\t<Revisions>\n"
@@ -710,7 +710,7 @@ int cmCTest::UpdateDirectory()
<< "\t\t\t<PreviousRevision>" << srevision2 << "</PreviousRevision>\n"
<< "\t\t\t<Author>" << sauthor2<< "</Author>\n"
<< "\t\t\t<Date>" << sdate2 << "</Date>\n"
- << "\t\t\t<Comment>" << comment2 << "</Comment>\n"
+ << "\t\t\t<Comment>" << this->MakeXMLSafe(comment2) << "</Comment>\n"
<< "\t\t\t<Email>" << semail2 << "</Email>\n"
<< "\t\t</Revisions>" << std::endl;
}