(closes issue #12208)
Reported by: atrash
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@109107
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
/* Respond to normal re-invite */
if (sendok)
/* If this is not a re-invite or something to ignore - it's critical */
- transmit_response_with_sdp(p, "200 OK", req, (reinvite || ast_test_flag(req, SIP_PKT_IGNORE)) ? XMIT_UNRELIABLE : XMIT_CRITICAL);
+ transmit_response_with_sdp(p, "200 OK", req, (reinvite ? XMIT_RELIABLE : (ast_test_flag(req, SIP_PKT_IGNORE) ? XMIT_UNRELIABLE : XMIT_CRITICAL)));
}
p->invitestate = INV_TERMINATED;
break;