[asterisk-commits] branch 1.2 r29512 -
	/branches/1.2/res/res_features.c
    asterisk-commits at lists.digium.com 
    asterisk-commits at lists.digium.com
       
    Mon May 22 13:15:05 MST 2006
    
    
  
Author: file
Date: Mon May 22 15:15:04 2006
New Revision: 29512
URL: http://svn.digium.com/view/asterisk?rev=29512&view=rev
Log:
Use the correct language when playing the transfer sound (issue #7109 reported by casper)
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=29512&r1=29511&r2=29512&view=diff
==============================================================================
--- branches/1.2/res/res_features.c (original)
+++ branches/1.2/res/res_features.c Mon May 22 15:15:04 2006
@@ -641,7 +641,7 @@
 			ast_verbose(VERBOSE_PREFIX_3 "Unable to find extension '%s' in context '%s'\n", newext, transferer_real_context);
 	}
 	if (!ast_strlen_zero(xferfailsound))
-		res = ast_streamfile(transferer, xferfailsound, transferee->language);
+		res = ast_streamfile(transferer, xferfailsound, transferer->language);
 	else
 		res = 0;
 	if (res) {
    
    
More information about the asterisk-commits
mailing list