mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
Allow the '#' sign to exist within an extension (inspired by issue #13330)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@159853 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -224,12 +224,13 @@ static int readexten_exec(struct ast_channel *chan, void *data)
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user