Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.5.2
-
None
Description
Organizational units for stems deeper than one level were not created correctly, due to line 1376 of Ldappc.java :
names.add(stemDn);
which should be
names.add((Name) stemDn.clone);
which looked fine to me for awhile until I realized my mistake.
Patch is attached.