[asterisk-commits] jpeeler: branch 1.6.2 r304338 - /branches/1.6.2/main/features.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jan 26 16:26:41 CST 2011
Author: jpeeler
Date: Wed Jan 26 16:26:37 2011
New Revision: 304338
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=304338
Log:
Change delimiter used internally for GOTO_ON_BLINDXFR to commas to match 76703.
Modified:
branches/1.6.2/main/features.c
Modified: branches/1.6.2/main/features.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/main/features.c?view=diff&rev=304338&r1=304337&r2=304338
==============================================================================
--- branches/1.6.2/main/features.c (original)
+++ branches/1.6.2/main/features.c Wed Jan 26 16:26:37 2011
@@ -544,7 +544,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