From ce1ff58f29fd7f79fd2a4e2263f8e10b3fa4f5af Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Tue, 1 Dec 2009 12:18:05 +0100 Subject: [PATCH] src/configfile.c: Fix a typo in two error messages. --- src/configfile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.11.0