From cf400ba462b2266b02c3bfc4c91391df8b862c06 Mon Sep 17 00:00:00 2001 From: anthm Date: Tue, 28 Dec 2004 20:31:37 +0000 Subject: [PATCH] fix transfer goto issue git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4572 f38db490-d61c-443f-a65b-d21fe96a405b --- pbx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pbx.c b/pbx.c index 209f059a8..82b7c78d4 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);