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
8cfd6909
Commit
8cfd6909
authored
Jul 09, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5563
parent
0a9b7077
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
8cfd6909
...
...
@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.11 Engineering
Added libldap assertion control (ITS#5560)
Fixed slapd crash with no listeners (ITS#5563)
Fixed slapd sets memory leak (ITS#5557)
Fixed slapd-sock, back-shell buffer count (ITS#5558)
Added slapo-nssov contrib module
...
...
servers/slapd/bconfig.c
View file @
8cfd6909
...
...
@@ -1676,7 +1676,7 @@ sortval_reject:
Listener
**
l
=
slapd_get_listeners
();
int
i
;
for
(
i
=
0
;
l
[
i
];
i
++
)
{
for
(
i
=
0
;
l
&&
l
[
i
];
i
++
)
{
LDAPURLDesc
*
lu2
;
int
isMe
=
0
;
ldap_url_parse
(
l
[
i
]
->
sl_url
.
bv_val
,
&
lu2
);
...
...
Write
Preview
Markdown
is supported
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