aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-29 21:37:05 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-29 21:37:05 +0000
commit4c32ec63b7cdda8fbb35da5984c48019ab24d8cd (patch)
treea8fc9ef5aa82c30fb734aa0e7e9cf17975ceabb7 /channels
parentbec4ef0e9efed0af3ffe714f5a90f622713d1dc6 (diff)
Fix build oops.
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@204246 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 175d5510c..688641d7c 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);
}