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.
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@304339 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jeff Peeler
2011-01-26 22:27:30 +00:00
parent 6a8f1a2f42
commit 81c72dfedc

View File

@@ -722,7 +722,7 @@ static void check_goto_on_transfer(struct ast_channel *chan)
for (x = goto_on_transfer; x && *x; x++) {
if (*x == '^')
*x = '|';
*x = ',';
}
/* Make formats okay */
xferchan->readformat = chan->readformat;