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
Tero Saarni
OpenLDAP
Commits
971b71d4
Commit
971b71d4
authored
Jan 31, 2011
by
Quanah Gibson-Mount
Browse files
ITS#6813
parent
786a0807
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
971b71d4
...
...
@@ -38,6 +38,7 @@ OpenLDAP 2.4.24 Engineering
Fixed libldap url parsing with NULL host (ITS#6653)
Fixed libldap ldap_open_internal_connection (ITS#6788)
Fixed libldap sync checking for BER errors (ITS#6738)
Fixed libldap variable usage (ITS#6813)
Fixed libldap MozNSS default cipher suites (ITS#6790)
Fixed libldap MozNSS cert usage types/values (ITS#6791)
Fixed libldap MozNSS restart module after fork() (ITS#6802)
...
...
libraries/libldap/os-ip.c
View file @
971b71d4
...
...
@@ -723,9 +723,9 @@ ldap_connect_to_host(LDAP *ld, Sockbuf *sb,
async
);
if
(
(
rc
==
0
)
||
(
rc
==
-
2
)
)
{
i
=
ldap_int_connect_cbs
(
ld
,
sb
,
&
s
,
srv
,
(
struct
sockaddr
*
)
&
sin
);
if
(
i
)
rc
=
i
;
i
nt
err
=
ldap_int_connect_cbs
(
ld
,
sb
,
&
s
,
srv
,
(
struct
sockaddr
*
)
&
sin
);
if
(
err
)
rc
=
err
;
else
break
;
}
...
...
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