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

ITS#5338

parent 13118c1b
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ OpenLDAP 2.4.8 Engineering
Fixed libldap extended decoding (ITS#5304)
Fixed libldap filter abort (ITS#5300)
Fixed libldap ldap_parse_sasl_bind_result (ITS#5263)
Fixed libldap result codes for open (ITS#5338)
Fixed libldap search timeout crash (ITS#5291)
Fixed libldap paged results crash (ITS#5315)
Fixed libldap use of %n (ITS#5324)
......
......@@ -82,7 +82,7 @@ ldap_open( LDAP_CONST char *host, int port )
}
Debug( LDAP_DEBUG_TRACE, "ldap_open: %s\n",
ld == NULL ? "succeeded" : "failed", 0, 0 );
ld != NULL ? "succeeded" : "failed", 0, 0 );
return ld;
}
......
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