From: David Vossel Date: Thu, 4 Nov 2010 21:28:12 +0000 (+0000) Subject: Fixes ringback tone on feature semi-attended transfer X-Git-Tag: 1.4.38-rc1~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=279f66c25db4b404dbf9b971b24b0e8b7ed88fb6;p=thirdparty%2Fasterisk.git Fixes ringback tone on feature semi-attended transfer ABE-2168 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@293922 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_features.c b/res/res_features.c index 98760ccd2a..893d0fac14 100644 --- a/res/res_features.c +++ b/res/res_features.c @@ -1009,6 +1009,9 @@ static int builtin_atxfer(struct ast_channel *chan, struct ast_channel *peer, st case AST_CONTROL_RINGING: { int connected = 0; + + ast_indicate(transferee, AST_CONTROL_UNHOLD); + ast_indicate(transferee, AST_CONTROL_RINGING); while (!connected && (ast_waitfor(newchan, -1) >= 0)) { if ((f = ast_read(newchan)) == NULL) { break;