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
c61aa299
Commit
c61aa299
authored
Dec 06, 2006
by
Pierangelo Masarati
Browse files
don't use conditionals in macro arguments (ITS#4769)
parent
d4e94140
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
c61aa299
...
...
@@ -4,6 +4,7 @@ OpenLDAP 2.3.31 Engineering
Fixed slapd group ACL caching when proxyAuthz'ing (ITS#4760)
Fixed slapd "group" authz default member parsing (ITS#4761)
Fixed slapd DN parsing in bindconf_parse (ITS#4766)
Fixed slapd conditional in macro argument (ITS#4769)
Fixed slapd-bdb/hdb/ldbm slap_add_opattrs error checking
Documentation
Fixed typo in slapo-retcode(5) man page (ITS#4753)
...
...
servers/slapd/connection.c
View file @
c61aa299
...
...
@@ -738,9 +738,11 @@ connection_destroy( Connection *c )
if
(
sd
!=
AC_SOCKET_INVALID
)
{
slapd_remove
(
sd
,
sb
,
1
,
0
,
0
);
Statslog
(
LDAP_DEBUG_STATS
,
(
close_reason
?
"conn=%lu fd=%ld closed (%s)
\n
"
:
"conn=%lu fd=%ld closed
\n
"
),
if
(
close_reason
==
NULL
)
{
close_reason
=
""
;
}
Statslog
(
LDAP_DEBUG_STATS
,
"conn=%lu fd=%ld closed (%s)
\n
"
,
connid
,
(
long
)
sd
,
close_reason
,
0
,
0
);
}
}
...
...
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