]> git.sur5r.net Git - openldap/commitdiff
ITS#5338
authorQuanah Gibson-Mount <quanah@openldap.org>
Tue, 12 Feb 2008 00:56:32 +0000 (00:56 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Tue, 12 Feb 2008 00:56:32 +0000 (00:56 +0000)
CHANGES
libraries/libldap/open.c

diff --git a/CHANGES b/CHANGES
index b2bf1f92172e46f475eb00656be25f7473c1e19c..42414bb5b10a947a7d6991ab634e80cddaab4c8c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -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)
index b9b435dabe491737e08a40640d4443af12cf7eb4..6dec230650aacb25152c470402ebbad3ad46202f 100644 (file)
@@ -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;
 }