mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 01:59:38 -05:00
Fix stupid "got <garbage> of 0 so far" debug message after ber_get_next.
This commit is contained in:
parent
a857725a06
commit
f0b0fe9f94
1 changed files with 2 additions and 1 deletions
|
|
@ -927,7 +927,8 @@ connection_input(
|
|||
ber_pvt_sb_get_desc( conn->c_sb ), err, STRERROR(err) );
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"\t*** got %ld of %lu so far\n",
|
||||
(long)(conn->c_currentber->ber_rwptr - conn->c_currentber->ber_buf),
|
||||
conn->c_currentber->ber_buf ?
|
||||
(long)(conn->c_currentber->ber_rwptr - conn->c_currentber->ber_buf) : 0,
|
||||
conn->c_currentber->ber_len, 0 );
|
||||
|
||||
if ( err != EWOULDBLOCK && err != EAGAIN ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue