[Asterisk-cvs] asterisk/apps app_dial.c,1.121,1.122

markster at lists.digium.com markster at lists.digium.com
Thu Jan 6 11:15:02 CST 2005


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv26203/apps

Modified Files:
	app_dial.c 
Log Message:
Fix typo for blind transfer (bug #3259)


Index: app_dial.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_dial.c,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -d -r1.121 -r1.122
--- app_dial.c	6 Jan 2005 02:59:20 -0000	1.121
+++ app_dial.c	6 Jan 2005 17:19:54 -0000	1.122
@@ -787,7 +787,7 @@
 		memset(tmp, 0, sizeof(struct localuser));
 		if (transfer) {
 			ast_set2_flag(tmp, strchr(transfer, 't'), DIAL_ALLOWREDIRECT_IN);
-			ast_set2_flag(tmp, strchr(transfer, 't'), DIAL_ALLOWREDIRECT_OUT);
+			ast_set2_flag(tmp, strchr(transfer, 'T'), DIAL_ALLOWREDIRECT_OUT);
 			ast_set2_flag(tmp, strchr(transfer, 'r'), DIAL_RINGBACKONLY);	
 			ast_set2_flag(tmp, strchr(transfer, 'm'), DIAL_MUSICONHOLD);	
 			ast_set2_flag(tmp, strchr(transfer, 'H'), DIAL_ALLOWDISCONNECT_OUT);	




More information about the svn-commits mailing list