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/branches/1.4@96198 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Christian Richter
2008-01-03 12:08:40 +00:00
parent 068e1d8208
commit be6e667c1e

View File

@@ -672,9 +672,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");