aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-04-15 21:23:24 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-04-15 21:23:24 +0000
commitc3d2ac4126115ed4504ea3ebfc40f9d53f8f2b4f (patch)
tree2b4215e9a5a1608a4a6e241a26a7b6666e0c6a73 /include/asterisk
parent5f1c004a4c10cffb45e79ba04cff5fcb3fc930d0 (diff)
Allow application options with arguments to contain parentheses, through a variety of escaping techniques.
Fixes SWP-1194 (ABE-2143). Review: https://reviewboard.asterisk.org/r/604/ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@257544 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/app.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/app.h b/include/asterisk/app.h
index e23b3b477..ff6a7254a 100644
--- a/include/asterisk/app.h
+++ b/include/asterisk/app.h
@@ -370,7 +370,7 @@ struct ast_app_option {
... do any argument parsing here ...
- if (ast_parseoptions(my_app_options, &opts, opt_args, options)) {
+ if (ast_app_parse_options(my_app_options, &opts, opt_args, options)) {
LOCAL_USER_REMOVE(u);
return -1;
}