[svn-commits] mmichelson: branch 1.6.2 r272806 - in /branches/1.6.2: ./ channels/chan_sip.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Mon Jun 28 12:37:25 CDT 2010


Author: mmichelson
Date: Mon Jun 28 12:37:21 2010
New Revision: 272806

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=272806
Log:
Merged revisions 272805 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
  r272805 | mmichelson | 2010-06-28 12:33:12 -0500 (Mon, 28 Jun 2010) | 11 lines
  
  Merged revisions 272804 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r272804 | mmichelson | 2010-06-28 12:31:40 -0500 (Mon, 28 Jun 2010) | 5 lines
    
    Decode URI in contact header of 302 response.
    
    ABE-2352
  ........
................

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/channels/chan_sip.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/channels/chan_sip.c?view=diff&rev=272806&r1=272805&r2=272806
==============================================================================
--- branches/1.6.2/channels/chan_sip.c (original)
+++ branches/1.6.2/channels/chan_sip.c Mon Jun 28 12:37:21 2010
@@ -17604,6 +17604,7 @@
 		e = strchr(s, ';');	/* And username ; parameters? */
 		if (e)
 			*e = '\0';	
+		ast_uri_decode(s);
 		ast_debug(2, "Received 302 Redirect to extension '%s' (domain %s)\n", s, domain);
 		if (p->owner) {
 			pbx_builtin_setvar_helper(p->owner, "SIPDOMAIN", domain);




More information about the svn-commits mailing list