From 886ebab04abc45d2478a6a51b690ceca4a5e9df0 Mon Sep 17 00:00:00 2001 From: Anthony Minessale II Date: Tue, 28 Dec 2004 20:31:37 +0000 Subject: [PATCH] fix transfer goto issue git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4572 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- pbx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pbx.c b/pbx.c index 209f059a82..82b7c78d4e 100755 --- a/pbx.c +++ b/pbx.c @@ -3882,7 +3882,7 @@ int ast_async_goto(struct ast_channel *chan, const char *context, const char *ex ast_explicit_goto(tmpchan, (context && !ast_strlen_zero(context)) ? context : chan->context, (exten && !ast_strlen_zero(exten)) ? exten : chan->exten, - priority - 1); + priority); /* Masquerade into temp channel */ ast_channel_masquerade(tmpchan, chan);