Merged revisions 96198 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r96198 | crichter | 2008-01-03 13:08:40 +0100 (Do, 03 Jan 2008) | 1 line

when overlapdial was used and no number was dialed, the call was dropped, now we just jump into the s extension, which makes a lot more sense.
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@96221 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Christian Richter 18 years ago
parent 9c00db7c16
commit c9f70f995b

@ -685,9 +685,16 @@ static int misdn_overlap_dial_task (const void *data)
diff = ast_tvdiff_ms(tv_end, tv_now);
if (diff <= 100) {
char *dad=ch->bc->dad, sexten[]="s";
/* if we are 100ms near the timeout, we are satisfied.. */
stop_indicate(ch);
if (ast_exists_extension(ch->ast, ch->context, ch->bc->dad, 1, ch->bc->oad)) {
if (ast_strlen_zero(ch->bc->dad)) {
dad=sexten;
strcpy(ch->ast->exten, sexten);
}
if (ast_exists_extension(ch->ast, ch->context, dad, 1, ch->bc->oad)) {
ch->state=MISDN_DIALING;
if (pbx_start_chan(ch) < 0) {
chan_misdn_log(-1, ch->bc->port, "ast_pbx_start returned < 0 in misdn_overlap_dial_task\n");

Loading…
Cancel
Save