summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorBJ Weschke <bweschke@btwtech.com>2006-09-03 20:44:14 +0000
committerBJ Weschke <bweschke@btwtech.com>2006-09-03 20:44:14 +0000
commitbbc9c049abbbf031e4836d8822bb4420f43b3211 (patch)
tree7fff108e3e628480fb6c6015f6858f4caeab9825 /main
parent7057035ae01ea9d12e9a192a58600e3bee097689 (diff)
Fix enum indexing problem with m() in WaitExten. Reported by Pavel J, in asterisk-dev.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41916 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/pbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/pbx.c b/main/pbx.c
index f080d016c..c98b57173 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -100,7 +100,7 @@ AST_APP_OPTIONS(background_opts, {
#define WAITEXTEN_MOH (1 << 0)
AST_APP_OPTIONS(waitexten_opts, {
- AST_APP_OPTION_ARG('m', WAITEXTEN_MOH, 1),
+ AST_APP_OPTION_ARG('m', WAITEXTEN_MOH, 0),
});
struct ast_context;