summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMatthew Fredrickson <creslin@digium.com>2007-03-26 16:48:29 +0000
committerMatthew Fredrickson <creslin@digium.com>2007-03-26 16:48:29 +0000
commite4a7d1b35f62943d28a738e8a0e21413216d01d9 (patch)
treeb46e62db70493df5d2a85155b0e6b2d7cfded79e /channels
parentdf42d78569846c4beca82459124a23848456e0e8 (diff)
Fix bug in which parameter type we are passing. This shouldn't be a problem
since both types are the same underneath. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@59205 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_zap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 96172a072..08dd3ece1 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -8751,8 +8751,8 @@ static void *ss7_linkset(void *data)
isup_cgba(linkset->ss7, e->cgb.startcic, e->cgb.endcic, e->cgb.status, e->cgb.type);
break;
case ISUP_EVENT_CGU:
- ss7_block_cics(linkset, e->cgu.startcic, e->cgu.endcic, e->cgb.status, 0);
- isup_cgua(linkset->ss7, e->cgu.startcic, e->cgu.endcic, e->cgb.status, e->cgu.type);
+ ss7_block_cics(linkset, e->cgu.startcic, e->cgu.endcic, e->cgu.status, 0);
+ isup_cgua(linkset->ss7, e->cgu.startcic, e->cgu.endcic, e->cgu.status, e->cgu.type);
break;
case ISUP_EVENT_BLO:
chanpos = ss7_find_cic(linkset, e->blo.cic);