From 05b4275693c2b122efffa1f0fda307a9f49d69b3 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Sat, 29 Nov 2008 18:34:12 +0000 Subject: [PATCH] Merged revisions 159853 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r159853 | tilghman | 2008-11-29 12:33:18 -0600 (Sat, 29 Nov 2008) | 2 lines Allow the '#' sign to exist within an extension (inspired by issue #13330) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@159854 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_readexten.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/app_readexten.c b/apps/app_readexten.c index 93ca4e670f..415678d9d9 100644 --- a/apps/app_readexten.c +++ b/apps/app_readexten.c @@ -169,12 +169,13 @@ static int readexten_exec(struct ast_channel *chan, void *data) else status = "TIMEOUT"; break; - } else if (res == '#') { - break; } exten[x] = res; if (!ast_matchmore_extension(chan, arglist.context, exten, 1 /* priority */, chan->cid.cid_num)) { + if (!ast_exists_extension(chan, arglist.context, exten, 1, chan->cid.cid_num) && res == '#') { + exten[x] = '\0'; + } break; } }