[asterisk-commits] file: branch 1.4 r69775 - in /branches/1.4: ./ channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jun 18 13:18:12 CDT 2007
Author: file
Date: Mon Jun 18 13:18:12 2007
New Revision: 69775
URL: http://svn.digium.com/view/asterisk?view=rev&rev=69775
Log:
Merged revisions 69765 via svnmerge from
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)
........
Modified:
branches/1.4/ (props changed)
branches/1.4/channels/chan_sip.c
Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.
Modified: branches/1.4/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_sip.c?view=diff&rev=69775&r1=69774&r2=69775
==============================================================================
--- branches/1.4/channels/chan_sip.c (original)
+++ branches/1.4/channels/chan_sip.c Mon Jun 18 13:18:12 2007
@@ -2693,7 +2693,7 @@
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);
More information about the asterisk-commits
mailing list