From: Mark Michelson Date: Mon, 29 Jun 2009 21:37:05 +0000 (+0000) Subject: Fix build oops. X-Git-Tag: 1.4.26~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=439ce618c539aab7d2fdf8f85ff0c49cf10a20ca;p=thirdparty%2Fasterisk.git Fix build oops. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@204246 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 175d5510cf..688641d7c4 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -13142,7 +13142,7 @@ static void handle_response(struct sip_pvt *p, int resp, char *rest, struct sip_ /* Acknowledge whatever it is destined for */ if ((resp >= 100) && (resp <= 199)) { - ack_res = __sip_semi_ack(p, seqno, 0, sipmethod) + ack_res = __sip_semi_ack(p, seqno, 0, sipmethod); } else { ack_res = __sip_ack(p, seqno, 0, sipmethod); }