Skip to content
Snippets Groups Projects
Commit 39cb57a4 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

fix back-ldap modify (BINARY mod_op)

parent 40d73ee7
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,7 @@ ldap_back_modify(
for (i=0, ml=modlist; ml; i++, ml=ml->sml_next) {
modv[i] = &mods[i];
mods[i].mod_op = ml->sml_op;
mods[i].mod_op = ml->sml_op | LDAP_MOD_BVALUES;
mods[i].mod_type = ml->sml_desc->ad_cname->bv_val;
mods[i].mod_bvalues = ml->sml_bvalues;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment