aboutsummaryrefslogtreecommitdiff
path: root/src/ca/RestartManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ca/RestartManager.cpp')
-rw-r--r--src/ca/RestartManager.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ca/RestartManager.cpp b/src/ca/RestartManager.cpp
index 3cfc07ee..c31819c1 100644
--- a/src/ca/RestartManager.cpp
+++ b/src/ca/RestartManager.cpp
@@ -18,8 +18,8 @@ enum eRmuResourceType
18}; 18};
19 19
20LPCWSTR vcsRestartResourceQuery = 20LPCWSTR vcsRestartResourceQuery =
21 L"SELECT `WixRestartResource`.`WixRestartResource`, `WixRestartResource`.`Component_`, `WixRestartResource`.`Resource`, `WixRestartResource`.`Attributes` " 21 L"SELECT `Wix4RestartResource`.`Wix4RestartResource`, `Wix4RestartResource`.`Component_`, `Wix4RestartResource`.`Resource`, `Wix4RestartResource`.`Attributes` "
22 L"FROM `WixRestartResource`"; 22 L"FROM `Wix4RestartResource`";
23enum eRestartResourceQuery { rrqRestartResource = 1, rrqComponent, rrqResource, rrqAttributes }; 23enum eRestartResourceQuery { rrqRestartResource = 1, rrqComponent, rrqResource, rrqAttributes };
24 24
25/******************************************************************** 25/********************************************************************
@@ -58,9 +58,9 @@ extern "C" UINT __stdcall WixRegisterRestartResources(
58 ExitOnFailure(hr, "Failed to initialize."); 58 ExitOnFailure(hr, "Failed to initialize.");
59 59
60 // Skip if the table doesn't exist. 60 // Skip if the table doesn't exist.
61 if (S_OK != WcaTableExists(L"WixRestartResource")) 61 if (S_OK != WcaTableExists(L"Wix4RestartResource"))
62 { 62 {
63 WcaLog(LOGMSG_STANDARD, "The RestartResource table does not exist; there are no resources to register with Restart Manager."); 63 WcaLog(LOGMSG_STANDARD, "The Wix4RestartResource table does not exist; there are no resources to register with Restart Manager.");
64 ExitFunction(); 64 ExitFunction();
65 } 65 }
66 66