Skip to content
Snippets Groups Projects
Commit 2b44c72d authored by Howard Chu's avatar Howard Chu
Browse files

Fix handling of an_oc_exclude

parent 1586a682
Branches
Tags
No related merge requests found
......@@ -310,10 +310,11 @@ replog1(
for ( an = ri->ri_attrs; an->an_name.bv_val; an++ ) {
if ( an->an_oc ) {
ocs = 1;
match |= an->an_oc_exclude;
if ( ml->sml_bvalues[i].bv_len == an->an_name.bv_len
&& !strcasecmp(ml->sml_bvalues[i].bv_val,
an->an_name.bv_val ) ) {
match = 1 ^ an->an_oc_exclude;
match = !an->an_oc_exclude;
break;
}
}
......@@ -385,10 +386,11 @@ replog1(
for ( an = ri->ri_attrs; an->an_name.bv_val; an++ ) {
if ( an->an_oc ) {
ocs = 1;
match |= an->an_oc_exclude;
if ( a->a_vals[i].bv_len == an->an_name.bv_len
&& !strcasecmp(a->a_vals[i].bv_val,
an->an_name.bv_val ) ) {
match = 1 ^ an->an_oc_exclude;
match = !an->an_oc_exclude;
break;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment