Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Joe Martin
OpenLDAP
Commits
d4225924
Commit
d4225924
authored
Jul 10, 2017
by
Ondřej Kuzník
Committed by
Ondřej Kuzník
Nov 17, 2020
Browse files
CLOSING is another potential state we could be in
parent
0ad91e05
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/lloadd/upstream.c
View file @
d4225924
...
...
@@ -146,7 +146,8 @@ handle_bind_response( Operation *op, BerElement *ber )
}
}
}
else
{
assert
(
client
->
c_state
==
SLAP_C_INVALID
);
assert
(
client
->
c_state
==
SLAP_C_INVALID
||
client
->
c_state
==
SLAP_C_CLOSING
);
}
CONNECTION_UNLOCK
(
client
);
...
...
@@ -258,7 +259,7 @@ handle_vc_bind_response( Operation *op, BerElement *ber )
}
}
}
else
{
assert
(
c
->
c_state
==
SLAP_C_INVALID
);
assert
(
c
->
c_state
==
SLAP_C_INVALID
||
c
->
c_state
==
SLAP_C_CLOSING
);
}
CONNECTION_UNLOCK_INCREF
(
c
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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