Browse Source

Merge topic 'cpack-ifw-fix-repo-attributes'

7a30fa1a CPackIFW: Fix attributes for Promoting Updates repository replacement
Brad King 9 years ago
parent
commit
0219743a01
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/CPack/IFW/cmCPackIFWRepository.cxx

+ 2 - 2
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()) {