Fix LDAP attribute suppression
This commit is contained in:
parent
b5806fac12
commit
37c02fedb2
1 changed files with 1 additions and 1 deletions
|
@ -261,7 +261,7 @@ sub delete_attribute($$$@)
|
||||||
{
|
{
|
||||||
log(DEBUG, "Remove attribute $what ($value) from $dn");
|
log(DEBUG, "Remove attribute $what ($value) from $dn");
|
||||||
|
|
||||||
@data = grep { ! $value eq $_ } @data;
|
@data = grep { $value ne $_ } @data;
|
||||||
$mod = 1;
|
$mod = 1;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Reference in a new issue