-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major
-
Affects Version/s: 1.5.2
-
Component/s: provisioning
-
None
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.