Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
openldap
OpenLDAP
Commits
ff93c6be
Commit
ff93c6be
authored
Dec 31, 2006
by
Howard Chu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't log EAGAIN returns from ber_get_next()
parent
598ef9e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
servers/slapd/connection.c
servers/slapd/connection.c
+3
-3
No files found.
servers/slapd/connection.c
View file @
ff93c6be
...
...
@@ -1527,11 +1527,11 @@ connection_input( Connection *conn )
ber_sockbuf_ctrl
(
conn
->
c_sb
,
LBER_SB_OPT_GET_FD
,
&
sd
);
Debug
(
LDAP_DEBUG_TRACE
,
"ber_get_next on fd %d failed errno=%d (%s)
\n
"
,
sd
,
err
,
sock_errstr
(
err
)
);
if
(
err
!=
EWOULDBLOCK
&&
err
!=
EAGAIN
)
{
/* log, close and send error */
Debug
(
LDAP_DEBUG_TRACE
,
"ber_get_next on fd %d failed errno=%d (%s)
\n
"
,
sd
,
err
,
sock_errstr
(
err
)
);
ber_free
(
conn
->
c_currentber
,
1
);
conn
->
c_currentber
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment