Skip to content
Snippets Groups Projects
Commit 971b71d4 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6813

parent 786a0807
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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;
int err = ldap_int_connect_cbs( ld, sb, &s, srv, (struct sockaddr *)&sin );
if ( err )
rc = err;
else
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment