[asterisk-commits] dvossel: branch 1.6.0 r199821 - in /branches/1.6.0: ./ channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jun 9 15:54:14 CDT 2009
Author: dvossel
Date: Tue Jun 9 15:54:10 2009
New Revision: 199821
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=199821
Log:
Merged revisions 199818 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r199818 | dvossel | 2009-06-09 15:47:57 -0500 (Tue, 09 Jun 2009) | 11 lines
CLI NOTIFY sending wrong transport type.
SIP's cli NOTIFY command only used UDP rather than copying the transport type from the peer.
(closes issue #15283)
Reported by: jthurman
Patches:
sip-notify-tcp-svn199728.patch uploaded by jthurman (license 614)
Tested by: jthurman, dvossel
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/channels/chan_sip.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/channels/chan_sip.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.0/channels/chan_sip.c?view=diff&rev=199821&r1=199820&r2=199821
==============================================================================
--- branches/1.6.0/channels/chan_sip.c (original)
+++ branches/1.6.0/channels/chan_sip.c Tue Jun 9 15:54:10 2009
@@ -14512,7 +14512,7 @@
return CLI_FAILURE;
}
- if (create_addr(p, a->argv[i], 0)) {
+ if (create_addr(p, a->argv[i], 1)) {
/* Maybe they're not registered, etc. */
sip_destroy(p);
ast_cli(a->fd, "Could not create address for '%s'\n", a->argv[i]);
More information about the asterisk-commits
mailing list