From 6dfc4700de236a96c6783e72865fbd8662dc1f10 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Mon, 27 Aug 2001 19:04:40 +0000 Subject: [PATCH] Align with HEAD --- libraries/libldap/tls.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libraries/libldap/tls.c b/libraries/libldap/tls.c index d7e9e650e9..3841fded78 100644 --- a/libraries/libldap/tls.c +++ b/libraries/libldap/tls.c @@ -809,7 +809,6 @@ ldap_pvt_tls_get_option( LDAP *ld, int option, void *arg ) { struct ldapoptions *lo; - if( ld != NULL ) { assert( LDAP_VALID( ld ) ); @@ -822,7 +821,7 @@ ldap_pvt_tls_get_option( LDAP *ld, int option, void *arg ) } else { /* Get pointer to global option structure */ lo = LDAP_INT_GLOBAL_OPT(); - if( lo == NULL ) { + if ( lo == NULL ) { return LDAP_NO_MEMORY; } } @@ -882,7 +881,7 @@ ldap_pvt_tls_set_option( LDAP *ld, int option, void *arg ) } else { /* Get pointer to global option structure */ lo = LDAP_INT_GLOBAL_OPT(); - if( lo == NULL ) { + if ( lo == NULL ) { return LDAP_NO_MEMORY; } }