From: Florian Forster Date: Tue, 1 Dec 2009 11:18:05 +0000 (+0100) Subject: src/configfile.c: Fix a typo in two error messages. X-Git-Tag: collectd-4.9.0~38 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=ce1ff58f29fd7f79fd2a4e2263f8e10b3fa4f5af;p=collectd.git src/configfile.c: Fix a typo in two error messages. --- diff --git a/src/configfile.c b/src/configfile.c index 1a957f67..2ef5f041 100644 --- a/src/configfile.c +++ b/src/configfile.c @@ -927,7 +927,7 @@ int cf_util_get_string (const oconfig_item_t *ci, char **ret_string) /* {{{ */ if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) { - ERROR ("cf_util_get_string: The %s plugin requires " + ERROR ("cf_util_get_string: The %s option requires " "exactly one string argument.", ci->key); return (-1); } @@ -950,7 +950,7 @@ int cf_util_get_port_number (const oconfig_item_t *ci) /* {{{ */ { if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING)) { - ERROR ("cf_util_get_port_number: The %s plugin requires " + ERROR ("cf_util_get_port_number: The %s option requires " "exactly one string argument.", ci->key); return (-1); }