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
Joe Martin
OpenLDAP
Commits
eb53400b
Commit
eb53400b
authored
Apr 21, 2008
by
Quanah Gibson-Mount
Browse files
IST#5469
parent
16ff029f
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
eb53400b
...
...
@@ -7,13 +7,14 @@ OpenLDAP 2.4.9 Engineering
Fixed slapcat error checking (ITS#5387)
Fixed slapd abstract objectClass inheritance check (ITS#5474)
Fixed slapd add operations requiring naming attrs (ITS#5412)
Fixed slapd
frontendDB backend selection
(ITS#54
1
9)
Fixed slapd
connection handling
(ITS#54
6
9)
Fixed slapd delta-syncrepl resync (ITS#5378)
Fixed slapd frontendDB backend selection (ITS#5419)
Fixed slapd pagedresults stale state (ITS#5409)
Fixed slapd pointer dereference (ITS#5388)
Fixed slapd null argument dereference (ITS#5435)
Fixed slapd sets attribute description parsing (ITS#5402)
Fixed slapd REP_ENTRY flags (ITS#5340)
Fixed slapd sets attribute description parsing (ITS#5402)
Fixed slapd syncrepl hang on back-config (ITS#5407)
Fixed slapd syncrepl compare_csns crash (ITS#5413)
Fixed slapd syncrepl contextCSN update clash (ITS#5426)
...
...
servers/slapd/connection.c
View file @
eb53400b
...
...
@@ -1621,6 +1621,9 @@ connection_resched( Connection *conn )
{
Operation
*
op
;
if
(
conn
->
c_writewaiter
)
return
0
;
if
(
conn
->
c_conn_state
==
SLAP_C_CLOSING
)
{
Debug
(
LDAP_DEBUG_TRACE
,
"connection_resched: "
"attempting closing conn=%lu sd=%d
\n
"
,
...
...
@@ -1629,7 +1632,7 @@ connection_resched( Connection *conn )
return
0
;
}
if
(
conn
->
c_conn_state
!=
SLAP_C_ACTIVE
||
conn
->
c_writewaiter
)
{
if
(
conn
->
c_conn_state
!=
SLAP_C_ACTIVE
)
{
/* other states need different handling */
return
0
;
}
...
...
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