summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2016-01-28 12:44:43 -0600
committerRichard Mudgett <rmudgett@digium.com>2016-01-28 12:49:29 -0600
commitd2397f028fd4b92a96ad2232ba73400ca9afafb0 (patch)
tree5e054428a32ba46ac32a8d01b6d1a939d90678fc /main
parentf19bf7a32141a1282f00a4da1c677a893b9a6d1b (diff)
config_options.c: Fix warning message wording.
Change-Id: I915ea437936320393afde0e7552cf0a980a6b2e4
Diffstat (limited to 'main')
-rw-r--r--main/config_options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/config_options.c b/main/config_options.c
index 4ab7a5b9a..f7f181b89 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");