Skip to content
Snippets Groups Projects
Commit 86cedc6a authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

ITS#439: Fix logic error

parent 25af82b3
Branches
Tags
No related merge requests found
......@@ -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 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment