[asterisk-commits] file: trunk r86757 - in /trunk: ./ channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 22 11:36:56 CDT 2007
Author: file
Date: Mon Oct 22 11:36:56 2007
New Revision: 86757
URL: http://svn.digium.com/view/asterisk?view=rev&rev=86757
Log:
Merged revisions 86756 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r86756 | file | 2007-10-22 13:35:22 -0300 (Mon, 22 Oct 2007) | 4 lines
After reading online I have confirmed that Record-Route headers should be copied to 1xx responses as well.
(closes issue #10113)
Reported by: makoto
........
Modified:
trunk/ (props changed)
trunk/channels/chan_sip.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=86757&r1=86756&r2=86757
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Mon Oct 22 11:36:56 2007
@@ -6413,7 +6413,7 @@
init_resp(resp, msg);
copy_via_headers(p, resp, req, "Via");
- if (msg[0] == '2')
+ if (msg[0] == '1' || msg[0] == '2')
copy_all_header(resp, req, "Record-Route");
copy_header(resp, req, "From");
ot = get_header(req, "To");
More information about the asterisk-commits
mailing list