freetdm: ss7: bug fix for ticket 6290, channel status was not showing channel 1

This commit is contained in:
Konrad Hammel 2011-02-11 17:02:56 -05:00
parent 145884c94c
commit 4f254ebe15

View File

@ -2833,7 +2833,7 @@ static int ftmod_ss7_fill_in_ccSpan(sng_ccSpan_t *ccSpan)
} }
/* find a spot for this circuit in the global structure */ /* find a spot for this circuit in the global structure */
x = (ccSpan->procId * 1000); x = (ccSpan->procId * 1000) + 1;
flag = 0; flag = 0;
while (flag == 0) { while (flag == 0) {
/**********************************************************************/ /**********************************************************************/