Index: apps/app_transfer.c =================================================================== RCS file: /usr/cvsroot/asterisk/apps/app_transfer.c,v retrieving revision 1.12 diff -u -r1.12 app_transfer.c --- apps/app_transfer.c 22 Aug 2005 20:53:38 -0000 1.12 +++ apps/app_transfer.c 6 Sep 2005 21:23:03 -0000 @@ -90,10 +90,11 @@ 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;