From: Iain Patterson Date: Mon, 6 Jan 2014 16:52:16 +0000 (+0000) Subject: Fixed message when RegSetValueEx() fails. X-Git-Tag: v2.22~80 X-Git-Url: http://git.iain.cx/?p=nssm.git;a=commitdiff_plain;h=4afcd865015c53c91a9cf883bdabde5153f80436 Fixed message when RegSetValueEx() fails. We were incorrectly displaying the error message associated with RegDeleteValue(). --- diff --git a/messages.mc b/messages.mc index 28d2137..20e593a 100644 Binary files a/messages.mc and b/messages.mc differ diff --git a/settings.cpp b/settings.cpp index 7340b1c..c83abb1 100644 --- a/settings.cpp +++ b/settings.cpp @@ -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; }