[asterisk-commits] branch 1.2 r13237 -
/branches/1.2/channels/chan_zap.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Thu Mar 16 10:42:48 MST 2006
Author: russell
Date: Thu Mar 16 11:42:46 2006
New Revision: 13237
URL: http://svn.digium.com/view/asterisk?rev=13237&view=rev
Log:
always use the callerid signalling method set in the zt_pvt strucutre as
opposed to the last one read from the config file (issue #6734, with mods)
Modified:
branches/1.2/channels/chan_zap.c
Modified: branches/1.2/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/channels/chan_zap.c?rev=13237&r1=13236&r2=13237&view=diff
==============================================================================
--- branches/1.2/channels/chan_zap.c (original)
+++ branches/1.2/channels/chan_zap.c Thu Mar 16 11:42:46 2006
@@ -5856,7 +5856,7 @@
number = 0;
/* If set to use V23 Signalling, launch our FSK gubbins and listen for it */
} else if (p->cid_signalling == CID_SIG_V23) {
- cs = callerid_new(cid_signalling);
+ cs = callerid_new(p->cid_signalling);
if (cs) {
samples = 0;
#if 1
@@ -6027,7 +6027,7 @@
}
} else if (p->use_callerid && p->cid_start == CID_START_RING) {
/* FSK Bell202 callerID */
- cs = callerid_new(cid_signalling);
+ cs = callerid_new(p->cid_signalling);
if (cs) {
#if 1
bump_gains(p);
More information about the asterisk-commits
mailing list