Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
b0fbda6b
Commit
b0fbda6b
authored
Jul 22, 2009
by
Quanah Gibson-Mount
Browse files
ITS#6220
parent
d86c807a
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
b0fbda6b
OpenLDAP 2.4 Change Log
OpenLDAP 2.4.18 Engineering
Fixed slapd incorrectly applying writetimeout when not set (ITS#6220)
OpenLDAP 2.4.17 Release (2009/07/13)
Fixed liblber to use ber_strnlen (ITS#6080)
...
...
servers/slapd/connection.c
View file @
b0fbda6b
...
...
@@ -249,7 +249,7 @@ int connections_timeout_idle(time_t now)
i
++
;
continue
;
}
if
(
c
->
c_writewaiter
)
{
if
(
c
->
c_writewaiter
&&
global_writetimeout
)
{
writers
=
1
;
if
(
difftime
(
c
->
c_activitytime
+
global_writetimeout
,
now
)
<
0
)
{
/* close it */
...
...
@@ -260,7 +260,7 @@ int connections_timeout_idle(time_t now)
}
}
connection_done
(
c
);
if
(
!
writers
)
if
(
old
&&
!
writers
)
slapd_clr_writetime
(
old
);
return
i
;
...
...
Write
Preview
Supports
Markdown
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