summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-07-05 15:56:04 -0400
committerBrad King <brad.king@kitware.com>2016-07-05 15:56:04 -0400
commit6643fe1481338a751729b2de5db1954f1824c15c (patch)
treec0862d8ba2223e020f299f77c9c009ba1f05a14f
parentc7e0c3005b37fcbfcc68ed8dd1d07bb5aea65d90 (diff)
parent7a30fa1a414faeb4ec83d894428a335f0b481de3 (diff)
downloadcmake-6643fe1481338a751729b2de5db1954f1824c15c.tar.gz
Merge branch 'cpack-ifw-fix-repo-attributes' into release
-rw-r--r--Source/CPack/IFW/cmCPackIFWRepository.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CPack/IFW/cmCPackIFWRepository.cxx b/Source/CPack/IFW/cmCPackIFWRepository.cxx
index b149f81430..45b47cd673 100644
--- a/Source/CPack/IFW/cmCPackIFWRepository.cxx
+++ b/Source/CPack/IFW/cmCPackIFWRepository.cxx
@@ -299,8 +299,8 @@ void cmCPackIFWRepository::WriteRepositoryUpdate(cmXMLWriter& xout)
if (Update == Add || Update == Remove) {
xout.Attribute("url", Url);
} else if (Update == Replace) {
- xout.Attribute("oldurl", OldUrl);
- xout.Attribute("newurl", NewUrl);
+ xout.Attribute("oldUrl", OldUrl);
+ xout.Attribute("newUrl", NewUrl);
}
// Enabled
if (!Enabled.empty()) {