From: Jeff Peeler Date: Wed, 26 Jan 2011 22:26:37 +0000 (+0000) Subject: Change delimiter used internally for GOTO_ON_BLINDXFR to commas to match 76703. X-Git-Tag: 1.6.2.18-rc1~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7fde40240f35db3dc7d81fc735f7130cff88ac6a;p=thirdparty%2Fasterisk.git Change delimiter used internally for GOTO_ON_BLINDXFR to commas to match 76703. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@304338 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/features.c b/main/features.c index 8710f248cc..a9091383eb 100644 --- a/main/features.c +++ b/main/features.c @@ -544,7 +544,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;