From 7fde40240f35db3dc7d81fc735f7130cff88ac6a Mon Sep 17 00:00:00 2001 From: Jeff Peeler Date: Wed, 26 Jan 2011 22:26:37 +0000 Subject: [PATCH] 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 --- main/features.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2