ITS#9406 fix debug msg

This commit is contained in:
Howard Chu 2020-11-27 14:48:26 +00:00
parent fa0f97545c
commit 5c27f9569f

View file

@ -486,6 +486,7 @@ authzPrettyNormal(
assert( val != NULL );
assert( !BER_BVISNULL( val ) );
BER_BVZERO( normalized );
/*
* 2) dn[.{exact|children|subtree|onelevel}]:{*|<DN>}
@ -904,7 +905,7 @@ authzPretty(
rc = authzPrettyNormal( val, out, ctx, 0 );
Debug( LDAP_DEBUG_TRACE, "<<< authzPretty: <%s> (%d)\n",
out->bv_val, rc );
out->bv_val ? out->bv_val : "(null)" , rc );
return rc;
}