mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
config_options.c: Fix warning message wording.
Change-Id: I915ea437936320393afde0e7552cf0a980a6b2e4
This commit is contained in:
@@ -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))) {
|
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;
|
return XMLDOC_STRICT ? -1 : 0;
|
||||||
}
|
}
|
||||||
ast_xml_set_attribute(option, "regex", regex ? "true" : "false");
|
ast_xml_set_attribute(option, "regex", regex ? "true" : "false");
|
||||||
|
Reference in New Issue
Block a user