Fix other missing parentheses in policy_define.c.

This commit is contained in:
Chris PeBenito 2014-10-31 20:38:28 -04:00
parent 6ff47214b1
commit f8cce2898b

View File

@ -3344,7 +3344,7 @@ int define_conditional(cond_expr_t * expr, avrule_t * t, avrule_t * f)
tmp = cn.avtrue_list;
last_tmp = NULL;
while (tmp) {
if (!tmp->specified & AVRULE_TRANSITION)
if (!(tmp->specified & AVRULE_TRANSITION))
continue;
retval = insert_check_type_rule(tmp, &policydbp->te_cond_avtab, &cn_old->true_list, &cn_old->false_list);
switch (retval) {