mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
cleanup and cast of logs
This commit is contained in:
parent
4039648a2e
commit
8a78d022bc
1 changed files with 4 additions and 4 deletions
|
|
@ -428,9 +428,9 @@ send_ldap_disconnect(
|
|||
reqoid, NULL, NULL, NULL );
|
||||
|
||||
Statslog( LDAP_DEBUG_STATS,
|
||||
"conn=%ld op=%ld DISCONNECT err=%ld tag=%lu text=%s\n",
|
||||
"conn=%ld op=%ld DISCONNECT tag=%lu err=%ld text=%s\n",
|
||||
(long) op->o_connid, (long) op->o_opid,
|
||||
(long) tag, (long) err, text ? text : "" );
|
||||
(unsigned long) tag, (long) err, text ? text : "" );
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -515,7 +515,7 @@ send_ldap_result(
|
|||
Statslog( LDAP_DEBUG_STATS,
|
||||
"conn=%ld op=%ld RESULT tag=%lu err=%ld text=%s\n",
|
||||
(long) op->o_connid, (long) op->o_opid,
|
||||
(long) tag, (long) err, text ? text : "" );
|
||||
(unsigned long) tag, (long) err, text ? text : "" );
|
||||
|
||||
if( tmp != NULL ) {
|
||||
ch_free(tmp);
|
||||
|
|
@ -657,7 +657,7 @@ send_search_result(
|
|||
Statslog( LDAP_DEBUG_STATS,
|
||||
"conn=%ld op=%ld SEARCH RESULT tag=%lu err=%ld text=%s\n",
|
||||
(long) op->o_connid, (long) op->o_opid,
|
||||
(long) tag, (long) err, text ? text : "" );
|
||||
(unsigned long) tag, (long) err, text ? text : "" );
|
||||
|
||||
if (tmp != NULL) {
|
||||
ch_free(tmp);
|
||||
|
|
|
|||
Loading…
Reference in a new issue