summaryrefslogtreecommitdiff
path: root/pbx.c
diff options
context:
space:
mode:
authorAnthony Minessale II <anthmct@yahoo.com>2004-12-28 20:31:37 +0000
committerAnthony Minessale II <anthmct@yahoo.com>2004-12-28 20:31:37 +0000
commit886ebab04abc45d2478a6a51b690ceca4a5e9df0 (patch)
tree606cef4e98f5d7a8a6f607d3f9f2d0184a0083ff /pbx.c
parent4c1332fb76096841e39c4fde611f1126821d0f6c (diff)
fix transfer goto issue
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4572 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx.c')
-rwxr-xr-xpbx.c2
1 files changed, 1 insertions, 1 deletions
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);