quick hack to try to get somthing working.

git-svn-id: http://svn.openzap.org/svn/openzap/trunk@121 a93c3328-9c30-0410-af19-c9cd2b2d52af
This commit is contained in:
Michael Jerris 2007-05-23 22:58:56 +00:00
parent 56a341e2ce
commit 2366b78c8a
1 changed files with 2 additions and 1 deletions

View File

@ -819,7 +819,8 @@ L3INT Q931Uie_CallingNum(Q931_TrunkInfo_t *pTrunk, ie *pIE, L3UCHAR * IBuf, L3UC
pie->Digit[x] = IBuf[Octet+Off] & 0x7f;
Off++;
x++;
}while((IBuf[Octet+Off]&0x80) != 0 && x < 20);
/* }while((IBuf[Octet+Off]&0x80) != 0 && x < 20); Temporary dirty hack. */
}while(Octet+Off < IESize);
Q931IESizeTest(Q931E_CALLINGNUM);