Bugfix: The created entries no longer are in the `top' or `organizationalUnit' object...
authorFlorian Forster <octo@verplant.org>
Tue, 6 Jun 2006 22:04:49 +0000 (00:04 +0200)
committerFlorian Forster <octo@verplant.org>
Tue, 6 Jun 2006 22:04:49 +0000 (00:04 +0200)
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

index 20a6690..887e39e 100644 (file)
@@ -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)
        {