From 0179054352dda99fbb817fc140dd0e1b9ea9c99f Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Wed, 7 Jun 2006 00:04:49 +0200 Subject: [PATCH] Bugfix: The created entries no longer are in the `top' or `organizationalUnit' objectClass'es. I have Debian's version of `OpenLDAP' now and it doesn't like that for some reason. I expect it's more correct this way, but I'm not sure.. --- lib/LiCoM/Person.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/LiCoM/Person.pm b/lib/LiCoM/Person.pm index 20a6690..887e39e 100644 --- a/lib/LiCoM/Person.pm +++ b/lib/LiCoM/Person.pm @@ -107,7 +107,7 @@ sub create my $dn; my $ou; - $entry->add (objectClass => [qw(top organizationalUnit person organizationalPerson inetOrgPerson)]); + $entry->add (objectClass => [qw(person organizationalPerson inetOrgPerson)]); for (keys %hash) { -- 2.11.0