From: Matthew Nicholson Date: Thu, 7 Jul 2011 15:25:49 +0000 (+0000) Subject: make the uri parameter used in reply digests more standards compliant in X-Git-Tag: 1.8.6.0-rc1~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89cdbd257c3b2958739aab46760fb2625e10a495;p=thirdparty%2Fasterisk.git make the uri parameter used in reply digests more standards compliant in certain cases by prepending "sip:" or "sips:" to it git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@326681 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index d273e0913d..ff0d18d2a7 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -18635,7 +18635,7 @@ static int build_reply_digest(struct sip_pvt *p, int method, char* digest, int d struct sip_auth_container *credentials; if (!ast_strlen_zero(p->domain)) - ast_copy_string(uri, p->domain, sizeof(uri)); + snprintf(uri, sizeof(uri), "%s:%s", p->socket.type == SIP_TRANSPORT_TLS ? "sips" : "sip", p->domain); else if (!ast_strlen_zero(p->uri)) ast_copy_string(uri, p->uri, sizeof(uri)); else