mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
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) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@13237 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -5856,7 +5856,7 @@ static void *ss_thread(void *data)
|
||||
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 @@ static void *ss_thread(void *data)
|
||||
}
|
||||
} 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);
|
||||
|
Reference in New Issue
Block a user