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
8bfda029
Commit
8bfda029
authored
Nov 18, 2008
by
Quanah Gibson-Mount
Browse files
ITS
#5815
parent
4c12cdcd
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
8bfda029
...
...
@@ -6,6 +6,7 @@ OpenLDAP 2.4.13 Engineering
Fixed liblutil returning undefined data (ITS#5748)
Fixed libldap error code return (ITS#5762)
Fixed libldap interaction with GnuTLS CN IP-based matches (ITS#5789)
Fixed libldap MAXHOSTNAMELEN typo (ITS#5815)
Fixed libldap Ipv6 detection (ITS#5739)
Fixed slapd acl checks on ADD (ITS#4556,ITS#5723)
Fixed slapd acl application to newly created backends (ITS#5572)
...
...
libraries/libldap/os-ip.c
View file @
8bfda029
...
...
@@ -769,7 +769,7 @@ ldap_host_connected_to( Sockbuf *sb, const char *host )
char
*
herr
;
#ifdef NI_MAXHOST
char
hbuf
[
NI_MAXHOST
];
#elif defined( MAXHOSTNAMELEN
#elif defined( MAXHOSTNAMELEN
)
char
hbuf
[
MAXHOSTNAMELEN
];
#else
char
hbuf
[
256
];
...
...
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