From: Michael Jerris Date: Tue, 29 May 2007 16:38:04 +0000 (+0000) Subject: Don't mess with the message before we send it up to level 4. X-Git-Tag: v1.0.6~38^2~674 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d06d911671938bf6c3a1ebcb4e8332587626337b;p=thirdparty%2Ffreeswitch.git Don't mess with the message before we send it up to level 4. git-svn-id: http://svn.openzap.org/svn/openzap/trunk@180 a93c3328-9c30-0410-af19-c9cd2b2d52af --- diff --git a/libs/openzap/src/isdn/Q931StateTE.c b/libs/openzap/src/isdn/Q931StateTE.c index fbdd9f08a7..6d92423ec7 100644 --- a/libs/openzap/src/isdn/Q931StateTE.c +++ b/libs/openzap/src/isdn/Q931StateTE.c @@ -813,11 +813,12 @@ L3INT Q931ProcRestartTE(Q931_TrunkInfo_t *pTrunk, L3UCHAR * buf, L3INT iFrom) } else if (iFrom ==2) { + /* TODO Add proc here*/ + ret = Q931Tx34(pTrunk,buf,pMes->Size); + if (pTrunk->autoRestartAck) { Q931AckRestart(pTrunk, buf); } - /* TODO Add proc here*/ - ret = Q931Tx34(pTrunk,buf,pMes->Size); } return ret; }