automerge commit

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2-netsec@68899 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Automerge Script
2007-06-12 09:10:08 +00:00
parent eec5ae4566
commit b9eb88b5f1

View File

@@ -2069,9 +2069,13 @@ static int misdn_digit(struct ast_channel *ast, char digit )
break; break;
default: default:
if ( bc->send_dtmf ) { /* Do not send Digits in CONNECTED State, when
* the other side is too mISDN. */
if (p->other_ch )
return 0;
if ( bc->send_dtmf )
send_digit_to_chan(p,digit); send_digit_to_chan(p,digit);
}
break; break;
} }