aboutsummaryrefslogtreecommitdiffstats
path: root/frame.c
diff options
context:
space:
mode:
authoranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-03 01:05:40 +0000
committeranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2004-12-03 01:05:40 +0000
commit176778cc0d9667d9857154f53b7085ea15cc63c4 (patch)
tree5e783be071c760d818d54fd2ce48871892b232b0 /frame.c
parent42c5aa81a1b159ad1b7058861ad91848f56f08f4 (diff)
add missing ~ to ast_parse_allow_deny that was breaking disallow
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4377 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'frame.c')
-rwxr-xr-xframe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frame.c b/frame.c
index c3f0d94c9..2b116fb03 100755
--- a/frame.c
+++ b/frame.c
@@ -974,7 +974,7 @@ void ast_parse_allow_deny(struct ast_codec_pref *pref, int *mask, char *list, in
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")) {