From: Konrad Hammel Date: Fri, 11 Feb 2011 22:02:56 +0000 (-0500) Subject: freetdm: ss7: bug fix for ticket 6290, channel status was not showing channel 1 X-Git-Tag: v1.2-rc1~187^2~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f254ebe15c6c512570cd8968d36e936a07a25f2;p=thirdparty%2Ffreeswitch.git freetdm: ss7: bug fix for ticket 6290, channel status was not showing channel 1 --- diff --git a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_xml.c b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_xml.c index 2f67d3fee7..166fe5dc04 100644 --- a/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_xml.c +++ b/libs/freetdm/src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_xml.c @@ -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 */ - x = (ccSpan->procId * 1000); + x = (ccSpan->procId * 1000) + 1; flag = 0; while (flag == 0) { /**********************************************************************/