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/02/05 00:32:52 UTC

svn commit: r151448 - incubator/directory/kerberos/trunk/core/src/java/org/apache/kerberos/sam/SamSubsystem.java

Author: akarasulu
Date: Fri Feb  4 15:32:50 2005
New Revision: 151448

URL: http://svn.apache.org/viewcvs?view=rev&rev=151448
Log:
bug where key is not fouind

Modified:
    incubator/directory/kerberos/trunk/core/src/java/org/apache/kerberos/sam/SamSubsystem.java

Modified: incubator/directory/kerberos/trunk/core/src/java/org/apache/kerberos/sam/SamSubsystem.java
URL: http://svn.apache.org/viewcvs/incubator/directory/kerberos/trunk/core/src/java/org/apache/kerberos/sam/SamSubsystem.java?view=diff&r1=151447&r2=151448
==============================================================================
--- incubator/directory/kerberos/trunk/core/src/java/org/apache/kerberos/sam/SamSubsystem.java (original)
+++ incubator/directory/kerberos/trunk/core/src/java/org/apache/kerberos/sam/SamSubsystem.java Fri Feb  4 15:32:50 2005
@@ -91,7 +91,7 @@
 
         String key = PROPKEY_BASE + entry.getSamType().getOrdinal();
 
-        if ( env.containsKey( key ) )
+        if ( ! env.containsKey( key ) )
         {
             String msg = "Could not find property '" + key + "'";