Fixed dumb mistake in the DN of the second user object.

This commit is contained in:
Robert Sanders 2005-08-01 18:17:06 +00:00
parent b634b27550
commit 3762ba25e8
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class LdapDirInitializer {
}
private void dirInit_SimpleCnUser(DirContext ctx) throws NamingException {
String name = "cn=user.two,ou=users";
String name = "cn=User Two,ou=users";
Attributes attrs = new BasicAttributes();
attrs.put("dn", name + ",ou=system");
attrs.put("cn", "Two User");