Archived
1
0

Fix LDAP attribute suppression

This commit is contained in:
Mercier Pierre-Olivier 2013-10-25 00:18:15 +02:00
parent b5806fac12
commit 37c02fedb2

View File

@ -261,7 +261,7 @@ sub delete_attribute($$$@)
{
log(DEBUG, "Remove attribute $what ($value) from $dn");
@data = grep { ! $value eq $_ } @data;
@data = grep { $value ne $_ } @data;
$mod = 1;
}
else {