diff options
Diffstat (limited to 'src/ca/scaiis7.cpp')
-rw-r--r-- | src/ca/scaiis7.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ca/scaiis7.cpp b/src/ca/scaiis7.cpp index f0f4a629..aaf307d7 100644 --- a/src/ca/scaiis7.cpp +++ b/src/ca/scaiis7.cpp | |||
@@ -8,13 +8,13 @@ HRESULT ScaIIS7ConfigTransaction(LPCWSTR wzBackup) | |||
8 | { | 8 | { |
9 | HRESULT hr = S_OK; | 9 | HRESULT hr = S_OK; |
10 | 10 | ||
11 | hr = WcaDoDeferredAction(L"StartIIS7ConfigTransaction", wzBackup, COST_IIS_TRANSACTIONS); | 11 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"StartIIS7ConfigTransaction"), wzBackup, COST_IIS_TRANSACTIONS); |
12 | ExitOnFailure(hr, "Failed to schedule StartIIS7ConfigTransaction"); | 12 | ExitOnFailure(hr, "Failed to schedule StartIIS7ConfigTransaction"); |
13 | 13 | ||
14 | hr = WcaDoDeferredAction(L"RollbackIIS7ConfigTransaction", wzBackup, 0); // rollback cost is irrelevant | 14 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"RollbackIIS7ConfigTransaction"), wzBackup, 0); // rollback cost is irrelevant |
15 | ExitOnFailure(hr, "Failed to schedule RollbackIIS7ConfigTransaction"); | 15 | ExitOnFailure(hr, "Failed to schedule RollbackIIS7ConfigTransaction"); |
16 | 16 | ||
17 | hr = WcaDoDeferredAction(L"CommitIIS7ConfigTransaction", wzBackup, 0); // commit is free | 17 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"CommitIIS7ConfigTransaction"), wzBackup, 0); // commit is free |
18 | ExitOnFailure(hr, "Failed to schedule StartIIS7ConfigTransaction"); | 18 | ExitOnFailure(hr, "Failed to schedule StartIIS7ConfigTransaction"); |
19 | 19 | ||
20 | LExit: | 20 | LExit: |