From 03f39d5a1e6318ddd9e1895a011046b1743b8a27 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" <kpfleming@digium.com> Date: Wed, 7 Sep 2005 21:39:53 +0000 Subject: [PATCH] ensure that TRANSFERSTATUS can return FAILURE (issue #5146) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6542 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_transfer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/app_transfer.c b/apps/app_transfer.c index e1eff2b725..61f2b9d038 100755 --- a/apps/app_transfer.c +++ b/apps/app_transfer.c @@ -90,10 +90,11 @@ static int transfer_exec(struct ast_channel *chan, void *data) res = ast_transfer(chan, dest); - if (!res) { + if (res < 0) { status = "FAILURE"; if (option_priority_jumping) ast_goto_if_exists(chan, chan->context, chan->exten, chan->priority + 101); + res = 0; } else { status = "SUCCESS"; res = 0; -- GitLab