[svn-commits] dvossel: branch 1.4 r293922 - /branches/1.4/res/res_features.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Nov 4 16:28:16 CDT 2010


Author: dvossel
Date: Thu Nov  4 16:28:12 2010
New Revision: 293922

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=293922
Log:
Fixes ringback tone on feature semi-attended transfer

ABE-2168

Modified:
    branches/1.4/res/res_features.c

Modified: branches/1.4/res/res_features.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/res/res_features.c?view=diff&rev=293922&r1=293921&r2=293922
==============================================================================
--- branches/1.4/res/res_features.c (original)
+++ branches/1.4/res/res_features.c Thu Nov  4 16:28:12 2010
@@ -1009,6 +1009,9 @@
 		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;




More information about the svn-commits mailing list