Fixed message when RegSetValueEx() fails.
authorIain Patterson <me@iain.cx>
Mon, 6 Jan 2014 16:52:16 +0000 (16:52 +0000)
committerIain Patterson <me@iain.cx>
Mon, 6 Jan 2014 16:52:16 +0000 (16:52 +0000)
We were incorrectly displaying the error message associated with
RegDeleteValue().

messages.mc
settings.cpp

index 28d2137..20e593a 100644 (file)
Binary files a/messages.mc and b/messages.mc differ
index 7340b1c..c83abb1 100644 (file)
@@ -145,7 +145,7 @@ static int setting_set_exit_action(const TCHAR *service_name, void *param, const
     if (! _tcsnicmp((const TCHAR *) action_string, exit_action_strings[i], ACTION_LEN)) {
       if (default_value && str_equiv(action_string, (TCHAR *) default_value)) ret = 0;
       if (RegSetValueEx(key, code, 0, REG_SZ, (const unsigned char *) action_string, (unsigned long) (_tcslen(action_string) + 1) * sizeof(TCHAR)) != ERROR_SUCCESS) {
-        print_message(stderr, NSSM_MESSAGE_REGDELETEVALUE_FAILED, code, service_name, error_string(GetLastError()));
+        print_message(stderr, NSSM_MESSAGE_SETVALUE_FAILED, code, service_name, error_string(GetLastError()));
         RegCloseKey(key);
         return -1;
       }