[asterisk-commits] jpeeler: branch 1.8 r304339 - in /branches/1.8: ./ main/features.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Wed Jan 26 16:27:33 CST 2011


Author: jpeeler
Date: Wed Jan 26 16:27:30 2011
New Revision: 304339

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=304339
Log:
Merged revisions 304338 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r304338 | jpeeler | 2011-01-26 16:26:37 -0600 (Wed, 26 Jan 2011) | 2 lines
  
  Change delimiter used internally for GOTO_ON_BLINDXFR to commas to match 76703.
........

Modified:
    branches/1.8/   (props changed)
    branches/1.8/main/features.c

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

Modified: branches/1.8/main/features.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/main/features.c?view=diff&rev=304339&r1=304338&r2=304339
==============================================================================
--- branches/1.8/main/features.c (original)
+++ branches/1.8/main/features.c Wed Jan 26 16:27:30 2011
@@ -722,7 +722,7 @@
 
 	for (x = goto_on_transfer; x && *x; x++) {
 		if (*x == '^')
-			*x = '|';
+			*x = ',';
 	}
 	/* Make formats okay */
 	xferchan->readformat = chan->readformat;




More information about the asterisk-commits mailing list