[asterisk-commits] branch 1.2 r14523 -
	/branches/1.2/res/res_features.c
    asterisk-commits at lists.digium.com 
    asterisk-commits at lists.digium.com
       
    Thu Mar 23 14:51:51 MST 2006
    
    
  
Author: file
Date: Thu Mar 23 15:51:50 2006
New Revision: 14523
URL: http://svn.digium.com/view/asterisk?rev=14523&view=rev
Log:
Issue #6764 - Return BUSY signal when other party is busy at Attended Transfer (Reported by mnachev)
Modified:
    branches/1.2/res/res_features.c
Modified: branches/1.2/res/res_features.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/res/res_features.c?rev=14523&r1=14522&r2=14523&view=diff
==============================================================================
--- branches/1.2/res/res_features.c (original)
+++ branches/1.2/res/res_features.c Thu Mar 23 15:51:50 2006
@@ -1144,6 +1144,9 @@
 							ast_indicate(caller, AST_CONTROL_RINGING);
 						} else if ((f->subclass == AST_CONTROL_BUSY) || (f->subclass == AST_CONTROL_CONGESTION)) {
 							state = f->subclass;
+							if (option_verbose > 2)
+								ast_verbose( VERBOSE_PREFIX_3 "%s is busy\n", chan->name);
+							ast_indicate(caller, AST_CONTROL_BUSY);
 							ast_frfree(f);
 							f = NULL;
 							break;
    
    
More information about the asterisk-commits
mailing list