mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
Slight modification to last commit to cast %ld args to long
This commit is contained in:
parent
d306bb1114
commit
64e8eeaa95
@ -927,9 +927,10 @@ 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",
|
||||
conn->c_currentber->ber_buf ?
|
||||
(long)(conn->c_currentber->ber_rwptr - conn->c_currentber->ber_buf) : 0,
|
||||
conn->c_currentber->ber_len, 0 );
|
||||
(long) ( conn->c_currentber->ber_buf
|
||||
? conn->c_currentber->ber_rwptr - conn->c_currentber->ber_buf
|
||||
: 0 ),
|
||||
(long) conn->c_currentber->ber_len, 0 );
|
||||
|
||||
if ( err != EWOULDBLOCK && err != EAGAIN ) {
|
||||
/* log, close and send error */
|
||||
|
Loading…
Reference in New Issue
Block a user