diff options
Diffstat (limited to 'src/ext/Http/ca/snisslcert.cpp')
-rw-r--r-- | src/ext/Http/ca/snisslcert.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ext/Http/ca/snisslcert.cpp b/src/ext/Http/ca/snisslcert.cpp index e9cafd66..81cd5298 100644 --- a/src/ext/Http/ca/snisslcert.cpp +++ b/src/ext/Http/ca/snisslcert.cpp | |||
@@ -420,16 +420,16 @@ static UINT SchedHttpSniSslCerts( | |||
420 | 420 | ||
421 | if (WCA_TODO_INSTALL == todoSched) | 421 | if (WCA_TODO_INSTALL == todoSched) |
422 | { | 422 | { |
423 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"WixRollbackHttpSniSslCertsInstall"), sczRollbackCustomActionData, cCertificates * COST_HTTP_SNI_SSL); | 423 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"RollbackHttpSniSslCertsInstall"), sczRollbackCustomActionData, cCertificates * COST_HTTP_SNI_SSL); |
424 | ExitOnFailure(hr, "Failed to schedule install SNI SSL certificate rollback"); | 424 | ExitOnFailure(hr, "Failed to schedule install SNI SSL certificate rollback"); |
425 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"WixExecHttpSniSslCertsInstall"), sczCustomActionData, cCertificates * COST_HTTP_SNI_SSL); | 425 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"ExecHttpSniSslCertsInstall"), sczCustomActionData, cCertificates * COST_HTTP_SNI_SSL); |
426 | ExitOnFailure(hr, "Failed to schedule install SNI SSL certificate execution"); | 426 | ExitOnFailure(hr, "Failed to schedule install SNI SSL certificate execution"); |
427 | } | 427 | } |
428 | else | 428 | else |
429 | { | 429 | { |
430 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"WixRollbackHttpSniSslCertsUninstall"), sczRollbackCustomActionData, cCertificates * COST_HTTP_SNI_SSL); | 430 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"RollbackHttpSniSslCertsUninstall"), sczRollbackCustomActionData, cCertificates * COST_HTTP_SNI_SSL); |
431 | ExitOnFailure(hr, "Failed to schedule uninstall SNI SSL certificate rollback"); | 431 | ExitOnFailure(hr, "Failed to schedule uninstall SNI SSL certificate rollback"); |
432 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"WixExecHttpSniSslCertsUninstall"), sczCustomActionData, cCertificates * COST_HTTP_SNI_SSL); | 432 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"ExecHttpSniSslCertsUninstall"), sczCustomActionData, cCertificates * COST_HTTP_SNI_SSL); |
433 | ExitOnFailure(hr, "Failed to schedule uninstall SNI SSL certificate execution"); | 433 | ExitOnFailure(hr, "Failed to schedule uninstall SNI SSL certificate execution"); |
434 | } | 434 | } |
435 | } | 435 | } |