aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_dial.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-14 01:40:47 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-14 01:40:47 +0000
commit4723c68efc37bd8b89e45d3eadc79418e4cc65ad (patch)
treebb6f7b75c432d1581d446cb4d927dd706cbfb8cc /apps/app_dial.c
parent73dcae5a3c3cba5f4ef5c17b11860fcfea57d245 (diff)
Use BEGIN_OPTIONS / END_OPTIONS to make the syntax highlighting in my editor happy
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89264 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_dial.c')
-rw-r--r--apps/app_dial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index ee7c41f59..42a624de3 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -277,7 +277,7 @@ enum {
OPT_ARG_ARRAY_SIZE,
};
-AST_APP_OPTIONS(dial_exec_options, {
+AST_APP_OPTIONS(dial_exec_options, BEGIN_OPTIONS
AST_APP_OPTION_ARG('A', OPT_ANNOUNCE, OPT_ARG_ANNOUNCE),
AST_APP_OPTION('C', OPT_RESETCDR),
AST_APP_OPTION('c', OPT_CANCEL_ELSEWHERE),
@@ -310,7 +310,7 @@ AST_APP_OPTIONS(dial_exec_options, {
AST_APP_OPTION_ARG('U', OPT_CALLEE_GOSUB, OPT_ARG_CALLEE_GOSUB),
AST_APP_OPTION('w', OPT_CALLEE_MONITOR),
AST_APP_OPTION('W', OPT_CALLER_MONITOR),
-});
+END_OPTIONS );
#define CAN_EARLY_BRIDGE(flags) (!ast_test_flag64(flags, OPT_CALLEE_HANGUP | \
OPT_CALLER_HANGUP | OPT_CALLEE_TRANSFER | OPT_CALLER_TRANSFER | \