ensure that TRANSFERSTATUS can return FAILURE (issue #5146)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6542 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-09-07 21:39:53 +00:00
parent 9a4c8f8c9c
commit 03f39d5a1e

View File

@@ -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;