From: Matthew Fredrickson Date: Mon, 26 Mar 2007 16:48:29 +0000 (+0000) Subject: Fix bug in which parameter type we are passing. This shouldn't be a problem X-Git-Tag: 1.6.0-beta1~3^2~2966 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e4a7d1b35f62943d28a738e8a0e21413216d01d9;p=thirdparty%2Fasterisk.git 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 --- diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 96172a072e..08dd3ece15 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);