Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
James Lowden
OpenLDAP
Commits
d3cccc35
Commit
d3cccc35
authored
Sep 11, 2017
by
Ondřej Kuzník
Committed by
Quanah Gibson-Mount
Oct 15, 2020
Browse files
ITS#8731 General Debug() related fixes
parent
4064a3dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
contrib/slapd-modules/nssov/nssov.c
View file @
d3cccc35
...
...
@@ -947,7 +947,7 @@ nssov_db_close(
if
(
slapMode
&
SLAP_SERVER_MODE
)
{
/* close socket if it's still in use */
if
(
ni
->
ni_socket
>=
0
)
;
if
(
ni
->
ni_socket
>=
0
)
{
if
(
close
(
ni
->
ni_socket
))
Debug
(
LDAP_DEBUG_ANY
,
"problem closing server socket (ignored): %s"
,
strerror
(
errno
),
0
,
0
);
...
...
servers/slapd/controls.c
View file @
d3cccc35
...
...
@@ -257,7 +257,7 @@ register_supported_control2(const char *controloid,
if
(
num_known_controls
>=
SLAP_MAX_CIDS
)
{
Debug
(
LDAP_DEBUG_ANY
,
"Too many controls registered."
" Recompile slapd with SLAP_MAX_CIDS defined > %d
\n
"
,
SLAP_MAX_CIDS
,
0
,
0
);
num_known_controls
,
0
,
0
);
return
LDAP_OTHER
;
}
...
...
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