]> git.sur5r.net Git - openldap/commitdiff
ITS#439: Fix logic error
authorKurt Zeilenga <kurt@openldap.org>
Fri, 4 Feb 2000 17:49:32 +0000 (17:49 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 4 Feb 2000 17:49:32 +0000 (17:49 +0000)
servers/slapd/back-ldbm/tools.c

index 0f264022604040fc3d2df8583591dab1417d2fcf..03821ebf4420ec1b151c8a607f597941d6d9898f 100644 (file)
@@ -217,7 +217,7 @@ int ldbm_tool_index_attr(
 
        at_cn = at_canonical_name( at );
 
-       if( at_cn ) {
+       if( at_cn == NULL ) {
                Debug( LDAP_DEBUG_ANY,
                        "<= index_attr NULL (attribute type %s (%s) has no canonical name)\n",
                        at->sat_oid, type, 0 );
@@ -227,7 +227,7 @@ int ldbm_tool_index_attr(
        attr_normalize( type );
        at_cn = at_canonical_name( type );
 
-       if( at_cn ) {
+       if( at_cn == NULL ) {
                Debug( LDAP_DEBUG_ANY,
                        "<= index_attr NULL (attribute type %s has no canonical name)\n",
                        type, 0, 0 );