[Asterisk-cvs] asterisk frame.c,1.38,1.39

anthm at lists.digium.com anthm at lists.digium.com
Thu Dec 2 20:07:15 CST 2004


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

Modified Files:
	frame.c 
Log Message:
add missing ~ to ast_parse_allow_deny that was breaking disallow

Index: frame.c
===================================================================
RCS file: /usr/cvsroot/asterisk/frame.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- frame.c	2 Dec 2004 21:57:45 -0000	1.38
+++ frame.c	3 Dec 2004 01:05:40 -0000	1.39
@@ -974,7 +974,7 @@
 				if (allowing)
 					(*mask) |= format_i;
 				else
-					(*mask) &= format_i;
+					(*mask) &= ~format_i;
 			}
 			/* can't consider 'all' a prefered codec*/
 			if(pref && strcasecmp(last_format, "all")) {




More information about the svn-commits mailing list