aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Http/ca/wixhttpca.cpp
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2023-02-01 20:22:50 -0500
committerBob Arnson <github@bobs.org>2023-02-01 21:27:12 -0500
commit77b1f6715534192ab143dd9109aacc50fc78e52a (patch)
treebffa59d3206d56f683274be3ad6bad30f0731097 /src/ext/Http/ca/wixhttpca.cpp
parent92d6c3255a72d14f40b25b4c94fa88e563a7092d (diff)
downloadwix-77b1f6715534192ab143dd9109aacc50fc78e52a.tar.gz
wix-77b1f6715534192ab143dd9109aacc50fc78e52a.tar.bz2
wix-77b1f6715534192ab143dd9109aacc50fc78e52a.zip
Fix CustomActionData names.
Fixes https://github.com/wixtoolset/issues/issues/7189. Also: - Clean up duplicate caDecor.h. - Clean up use of CUSTOM_ACTION_DECORATION.
Diffstat (limited to 'src/ext/Http/ca/wixhttpca.cpp')
-rw-r--r--src/ext/Http/ca/wixhttpca.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ext/Http/ca/wixhttpca.cpp b/src/ext/Http/ca/wixhttpca.cpp
index e24096bb..be2db913 100644
--- a/src/ext/Http/ca/wixhttpca.cpp
+++ b/src/ext/Http/ca/wixhttpca.cpp
@@ -191,16 +191,16 @@ static UINT SchedHttpUrlReservations(
191 191
192 if (WCA_TODO_INSTALL == todoSched) 192 if (WCA_TODO_INSTALL == todoSched)
193 { 193 {
194 hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"WixRollbackHttpUrlReservationsInstall"), sczRollbackCustomActionData, cUrlReservations * COST_HTTP_URL_ACL); 194 hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"RollbackHttpUrlReservationsInstall"), sczRollbackCustomActionData, cUrlReservations * COST_HTTP_URL_ACL);
195 ExitOnFailure(hr, "Failed to schedule install URL reservations rollback."); 195 ExitOnFailure(hr, "Failed to schedule install URL reservations rollback.");
196 hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"WixExecHttpUrlReservationsInstall"), sczCustomActionData, cUrlReservations * COST_HTTP_URL_ACL); 196 hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"ExecHttpUrlReservationsInstall"), sczCustomActionData, cUrlReservations * COST_HTTP_URL_ACL);
197 ExitOnFailure(hr, "Failed to schedule install URL reservations execution."); 197 ExitOnFailure(hr, "Failed to schedule install URL reservations execution.");
198 } 198 }
199 else 199 else
200 { 200 {
201 hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"WixRollbackHttpUrlReservationsUninstall"), sczRollbackCustomActionData, cUrlReservations * COST_HTTP_URL_ACL); 201 hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"RollbackHttpUrlReservationsUninstall"), sczRollbackCustomActionData, cUrlReservations * COST_HTTP_URL_ACL);
202 ExitOnFailure(hr, "Failed to schedule uninstall URL reservations rollback."); 202 ExitOnFailure(hr, "Failed to schedule uninstall URL reservations rollback.");
203 hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"WixExecHttpUrlReservationsUninstall"), sczCustomActionData, cUrlReservations * COST_HTTP_URL_ACL); 203 hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"ExecHttpUrlReservationsUninstall"), sczCustomActionData, cUrlReservations * COST_HTTP_URL_ACL);
204 ExitOnFailure(hr, "Failed to schedule uninstall URL reservations execution."); 204 ExitOnFailure(hr, "Failed to schedule uninstall URL reservations execution.");
205 } 205 }
206 } 206 }