dect
/
asterisk
Archived
13
0
Fork 0

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: http://svn.digium.com/svn/asterisk/trunk@59205 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mattf 2007-03-26 16:48:29 +00:00
parent 04bc7a858c
commit b00932def0
1 changed files with 2 additions and 2 deletions

View File

@ -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);