dect
/
asterisk
Archived
13
0
Fork 0

Make sure we don't start a call when we have already done so in response to a COT message

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@106892 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mattf 2008-03-07 22:36:49 +00:00
parent 3f49dc54f0
commit cacdbb63af
1 changed files with 5 additions and 3 deletions

View File

@ -9506,9 +9506,11 @@ static void *ss7_linkset(void *data)
}
p = linkset->pvts[chanpos];
zt_loopback(p, 0);
ss7_start_call(p, linkset);
if (p->loopedback) {
zt_loopback(p, 0);
ss7_start_call(p, linkset);
}
break;
case ISUP_EVENT_CCR:
ast_debug(1, "Got CCR request on CIC %d\n", e->ccr.cic);