From: Richard Mudgett Date: Thu, 28 Jan 2016 18:44:43 +0000 (-0600) Subject: config_options.c: Fix warning message wording. X-Git-Tag: 13.8.0-rc1~104 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a9e623ff94689b149156871e9f91c9db0fb87c0;p=thirdparty%2Fasterisk.git config_options.c: Fix warning message wording. Change-Id: I915ea437936320393afde0e7552cf0a980a6b2e4 --- diff --git a/main/config_options.c b/main/config_options.c index 0c706ac53f..2aa716bdcd 100644 --- a/main/config_options.c +++ b/main/config_options.c @@ -1050,7 +1050,7 @@ static int xmldoc_update_config_option(struct aco_type **types, const char *modu } if (!(option = ast_xml_xpath_get_first_result(results))) { - ast_log(LOG_WARNING, "Could obtain results for option '%s' with type '%s' in module '%s'\n", name, object_name, module); + ast_log(LOG_WARNING, "Could not obtain results for option '%s' with type '%s' in module '%s'\n", name, object_name, module); return XMLDOC_STRICT ? -1 : 0; } ast_xml_set_attribute(option, "regex", regex ? "true" : "false");