]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 69765 via svnmerge from
authorJoshua Colp <jcolp@digium.com>
Mon, 18 Jun 2007 18:18:12 +0000 (18:18 +0000)
committerJoshua Colp <jcolp@digium.com>
Mon, 18 Jun 2007 18:18:12 +0000 (18:18 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r69765 | file | 2007-06-18 14:13:03 -0400 (Mon, 18 Jun 2007) | 2 lines

Set the peer name on the dialog to the one configured in sip.conf and NOT the username to be used for authentication attempts. (issue #9967 reported by achauvin)

........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@69775 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index 93c76be91975561358b79d1acb57bdf9b648f2e3..e0a783a3fe53ece6a2bac093998629220b1eb95a 100644 (file)
@@ -2693,7 +2693,7 @@ static int create_addr_from_peer(struct sip_pvt *dialog, struct sip_peer *peer)
                ast_rtp_set_rtpkeepalive(dialog->vrtp, peer->rtpkeepalive);
        }
 
-       ast_string_field_set(dialog, peername, peer->username);
+       ast_string_field_set(dialog, peername, peer->name);
        ast_string_field_set(dialog, authname, peer->username);
        ast_string_field_set(dialog, username, peer->username);
        ast_string_field_set(dialog, peersecret, peer->secret);