Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/zabbix_server/poller/checks_external.c')
-rw-r--r--src/zabbix_server/poller/checks_external.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zabbix_server/poller/checks_external.c b/src/zabbix_server/poller/checks_external.c
index a3d1faffb5f..5ac85eeb335 100644
--- a/src/zabbix_server/poller/checks_external.c
+++ b/src/zabbix_server/poller/checks_external.c
@@ -52,7 +52,7 @@ int get_value_external(DC_ITEM *item, AGENT_RESULT *result)
if (ZBX_COMMAND_ERROR == (rc = parse_command(item->key, key, sizeof(key), params, sizeof(params))))
{
- SET_MSG_RESULT(result, zbx_strdup(NULL, "Key is badly formatted"));
+ SET_MSG_RESULT(result, zbx_strdup(NULL, "Invalid item key format."));
goto notsupported;
}
@@ -72,7 +72,7 @@ int get_value_external(DC_ITEM *item, AGENT_RESULT *result)
if (0 == (n = num_param(params)))
{
- SET_MSG_RESULT(result, zbx_strdup(NULL, "Key is badly formatted"));
+ SET_MSG_RESULT(result, zbx_strdup(NULL, "Invalid item parameter format."));
goto notsupported;
}