From: Kurt Zeilenga Date: Sat, 23 Jun 2001 00:48:02 +0000 (+0000) Subject: Fixup error messages X-Git-Tag: OPENLDAP_REL_ENG_2_0_12~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a988fc6b10a04f5579a36d33ec33c10f5a606e28;p=thirdparty%2Fopenldap.git Fixup error messages --- diff --git a/libraries/libldap/tls.c b/libraries/libldap/tls.c index 3c98a285e0..f74c56ff99 100644 --- a/libraries/libldap/tls.c +++ b/libraries/libldap/tls.c @@ -137,7 +137,8 @@ ldap_pvt_tls_init_def_ctx( void ) tls_def_ctx = SSL_CTX_new( SSLv23_method() ); if ( tls_def_ctx == NULL ) { Debug( LDAP_DEBUG_ANY, - "TLS: could not allocate default ctx.\n",0,0,0); + "TLS: could not allocate default ctx (%d).\n", + ERR_peek_error(),0,0); goto error_exit; } if ( tls_opt_ciphersuite && @@ -928,7 +929,7 @@ ldap_pvt_tls_start ( LDAP *ld, Sockbuf *sb, void *ctx_arg ) if ( strcasecmp(peer_hostname, peer_cert_cn) != 0 ) { Debug( LDAP_DEBUG_ANY, "TLS: hostname (%s) does not match " - "common name in certificate (%s).", + "common name in certificate (%s).\n", peer_hostname, peer_cert_cn, 0 ); LDAP_FREE( peer_cert_cn ); LDAP_FREE( peer_hostname );