diff options
author | Brad King <brad.king@kitware.com> | 2016-07-05 19:56:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-07-05 19:56:04 (GMT) |
commit | 6643fe1481338a751729b2de5db1954f1824c15c (patch) | |
tree | c0862d8ba2223e020f299f77c9c009ba1f05a14f | |
parent | c7e0c3005b37fcbfcc68ed8dd1d07bb5aea65d90 (diff) | |
parent | 7a30fa1a414faeb4ec83d894428a335f0b481de3 (diff) | |
download | CMake-6643fe1481338a751729b2de5db1954f1824c15c.zip CMake-6643fe1481338a751729b2de5db1954f1824c15c.tar.gz CMake-6643fe1481338a751729b2de5db1954f1824c15c.tar.bz2 |
Merge branch 'cpack-ifw-fix-repo-attributes' into release
-rw-r--r-- | Source/CPack/IFW/cmCPackIFWRepository.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CPack/IFW/cmCPackIFWRepository.cxx b/Source/CPack/IFW/cmCPackIFWRepository.cxx index b149f81..45b47cd 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()) { |