]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 326681 via svnmerge from
authorMatthew Nicholson <mnicholson@digium.com>
Thu, 7 Jul 2011 15:26:42 +0000 (15:26 +0000)
committerMatthew Nicholson <mnicholson@digium.com>
Thu, 7 Jul 2011 15:26:42 +0000 (15:26 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r326681 | mnicholson | 2011-07-07 10:25:49 -0500 (Thu, 07 Jul 2011) | 3 lines

  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/trunk@326682 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index 1f2c72379a2423d118c73afb92d84ae03c4ee06d..ab7600f7bf9f715d41e7404940a7c8b957ecaac2 100644 (file)
@@ -19137,7 +19137,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