mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-13 15:54:04 -05:00
Fix debug messages
This commit is contained in:
parent
4854c6173b
commit
065af58fb7
1 changed files with 4 additions and 3 deletions
|
|
@ -382,13 +382,14 @@ get_substring_filter(
|
|||
break;
|
||||
|
||||
default:
|
||||
Debug( LDAP_DEBUG_FILTER, " unknown type\n", tag, 0,
|
||||
0 );
|
||||
Debug( LDAP_DEBUG_FILTER, " unknown type=%ld\n",
|
||||
(long) tag, 0, 0 );
|
||||
|
||||
ber_bvfree( val );
|
||||
|
||||
return_error:
|
||||
Debug( LDAP_DEBUG_FILTER, " error=%d\n", rc, 0, 0 );
|
||||
Debug( LDAP_DEBUG_FILTER, " error=%ld\n",
|
||||
(long) rc, 0, 0 );
|
||||
|
||||
if( fstr ) {
|
||||
free( *fstr );
|
||||
|
|
|
|||
Loading…
Reference in a new issue