src/configfile.c: Fix a typo in two error messages.
authorFlorian Forster <octo@huhu.verplant.org>
Tue, 1 Dec 2009 11:18:05 +0000 (12:18 +0100)
committerFlorian Forster <octo@huhu.verplant.org>
Tue, 1 Dec 2009 11:18:05 +0000 (12:18 +0100)
src/configfile.c

index 1a957f6..2ef5f04 100644 (file)
@@ -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);
        }