You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2005/06/04 08:33:53 UTC

svn commit: r179966 - /directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java

Author: akarasulu
Date: Fri Jun  3 23:33:52 2005
New Revision: 179966

URL: http://svn.apache.org/viewcvs?rev=179966&view=rev
Log:
type - put it in a constant

Modified:
    directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java

Modified: directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java
URL: http://svn.apache.org/viewcvs/directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java?rev=179966&r1=179965&r2=179966&view=diff
==============================================================================
--- directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java (original)
+++ directory/apacheds/trunk/main/src/main/java/org/apache/ldap/server/jndi/ServerContextFactory.java Fri Jun  3 23:33:52 2005
@@ -237,7 +237,7 @@
 
         InitialLdapContext ctx = new InitialLdapContext( initialEnv, new Control[]{} );
 
-        PrincipalStore store = new JndiPrincipalStoreImpl( ctx, new LdapName( "ou=User" ) );
+        PrincipalStore store = new JndiPrincipalStoreImpl( ctx, new LdapName( "ou=Users" ) );
 
         try
         {