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
bbdfe3a1
Commit
bbdfe3a1
authored
Dec 12, 2010
by
Quanah Gibson-Mount
Browse files
ITS#6644
parent
5460bbf0
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
bbdfe3a1
...
...
@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.24 Engineering
Fixed liblber to not close invalid sockets (ITS#6585)
Fixed libldap dnssrv port format specifier (ITS#6644)
Fixed ldapsearch segfault with deref (ITS#6638)
Fixed slapd acl parsing overflow (ITS#6611)
Fixed slapd modify to return actual error (ITS#6581)
...
...
libraries/libldap/dnssrv.c
View file @
bbdfe3a1
...
...
@@ -289,7 +289,7 @@ int ldap_domain2hostlist(
/* not first time around */
hostlist
[
cur
++
]
=
' '
;
}
cur
+=
sprintf
(
&
hostlist
[
cur
],
"%s:%h
d
"
,
host
,
port
);
cur
+=
sprintf
(
&
hostlist
[
cur
],
"%s:%h
u
"
,
host
,
port
);
}
add_size:
;
p
+=
size
;
...
...
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