mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
ITS#2801: fix str2entry trace
This commit is contained in:
parent
b1a1f46d64
commit
4eb36216db
1 changed files with 3 additions and 2 deletions
|
|
@ -66,9 +66,10 @@ str2entry( char *s )
|
|||
*/
|
||||
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( OPERATION, DETAIL1, "str2entry: \"%s\"\n", s ? s : "NULL", 0, 0 );
|
||||
LDAP_LOG( OPERATION, DETAIL1, "str2entry: \"%s\"\n",
|
||||
s ? s : "NULL", 0, 0 );
|
||||
#else
|
||||
Debug( LDAP_DEBUG_TRACE, "=> str2entry\n",
|
||||
Debug( LDAP_DEBUG_TRACE, "=> str2entry: \"%s\"\n",
|
||||
s ? s : "NULL", 0, 0 );
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue