mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-28 00:10:25 -07:00
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
This commit is contained in:
+2
-2
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user