From: Russell Bryant Date: Tue, 21 Dec 2004 15:10:06 +0000 (+0000) Subject: fix missing "sip:" in ACK (bug #2687) X-Git-Tag: 1.0.11.1~333 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=665cf4fb64a8e436780f4838ac732a324cda0238;p=thirdparty%2Fasterisk.git fix missing "sip:" in ACK (bug #2687) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4511 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 68e0923a8b..9a84a06721 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -4384,14 +4384,14 @@ static int parse_ok_contact(struct sip_pvt *pvt, struct sip_request *req) snprintf(pvt->our_contact, sizeof(pvt->our_contact) - 1, "<%s>", c); + strncpy(pvt->okcontacturi, c, sizeof(pvt->okcontacturi) - 1); + /* Make sure it's a SIP URL */ if (strncasecmp(c, "sip:", 4)) { ast_log(LOG_NOTICE, "'%s' is not a valid SIP contact (missing sip:) trying to use anyway\n", c); } else c += 4; - strncpy(pvt->okcontacturi, c, sizeof(pvt->okcontacturi) - 1); - /* Ditch arguments */ n = strchr(c, ';'); if (n)