aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-02 23:58:08 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-02 23:58:08 +0000
commit75d05abdfd7717e591c1fe9d91bd5e89c8e60a67 (patch)
tree92fd3ad9cadd6c0e3437b61825a8453fe0410877 /res
parentf52d5469715437fc7e902f9dc28dda6971b4bdd2 (diff)
Channel is masqueraded, don't keep alive
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@160411 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 2fa66f325..72865f988 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -756,7 +756,7 @@ static int builtin_blindtransfer(struct ast_channel *chan, struct ast_channel *p
/* We return non-zero, but tell the PBX not to hang the channel when
the thread dies -- We have to be careful now though. We are responsible for
hanging up the channel, else it will never be hung up! */
- return (transferer == peer) ? AST_PBX_KEEPALIVE : AST_PBX_NO_HANGUP_PEER_PARKED;
+ return 0;
} else {
ast_log(LOG_WARNING, "Unable to park call %s\n", transferee->name);
}