summaryrefslogtreecommitdiff
path: root/apps/app_disa.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2008-12-09 16:47:39 +0000
committerRussell Bryant <russell@russellbryant.com>2008-12-09 16:47:39 +0000
commite1ff75c37c297f4a7795566a8e85f03440405e96 (patch)
treef41865ed6ed46fcd7b2ac64af28fb2939a00cf59 /apps/app_disa.c
parentda0737c00c850efb7a87e227fdebd9cf52e24540 (diff)
Merged revisions 162014 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r162014 | russell | 2008-12-09 10:46:53 -0600 (Tue, 09 Dec 2008) | 5 lines Allow DISA to handle extensions that start with #. (closes issue #13330) Reported by: jcovert ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@162016 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_disa.c')
-rw-r--r--apps/app_disa.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/app_disa.c b/apps/app_disa.c
index 80aeb09ea..8217a2456 100644
--- a/apps/app_disa.c
+++ b/apps/app_disa.c
@@ -303,8 +303,14 @@ static int disa_exec(struct ast_channel *chan, void *data)
continue;
}
} else {
- if (j == '#') { /* end of extension */
- break;
+ if (j == '#') { /* end of extension .. maybe */
+ if (i == 0 &&
+ (ast_matchmore_extension(chan, args.context, "#", 1, chan->cid.cid_num) ||
+ ast_exists_extension(chan, args.context, "#", 1, chan->cid.cid_num)) ) {
+ /* Let the # be the part of, or the entire extension */
+ } else {
+ break;
+ }
}
}