forked from pool/openldap2
5798d8fa39
- FATE#315028 remove memory limit for slapd - FATE#315415: LDAP compat packages required for older SLES versions For this reson following patches were applied: openldap-2.3.37-libldap-suid.diff openldap-2.3.37-libldap-ldapi_url.dif openldap-2.3.37-libldap-ntlm.diff openldap-2.3.37-libldap-gethostbyname_r.dif openldap-2.3.37-libldap-sasl-max-buff-size.dif openldap-2.3.37-libldap-utf8-ADcanonical.dif openldap-2.3.37-liblber-length-decoding.dif openldap-2.3.37-libldap-ld_defconn-ldap_free_connection.dif openldap-2.3.37-libldap-tls_chkhost-its6239.dif openldap-2.3.37-libldap-ssl.dif OBS-URL: https://build.opensuse.org/package/show/network:ldap/openldap2?expand=0&rev=106
16 lines
553 B
Plaintext
16 lines
553 B
Plaintext
Index: libraries/libldap/tls.c
|
|
===================================================================
|
|
--- libraries/libldap/tls.c 2013-11-12 17:09:55.284965672 +0100
|
|
+++ libraries/libldap/tls.c 2013-11-12 17:10:22.829163042 +0100
|
|
@@ -918,10 +918,6 @@
|
|
{
|
|
/* If peer cert was bad, treat as if no cert was given */
|
|
if (SSL_get_verify_result(s)) {
|
|
- /* If we can send an alert, do so */
|
|
- if (SSL_version(s) != SSL2_VERSION) {
|
|
- ssl3_send_alert(s,SSL3_AL_WARNING,SSL3_AD_BAD_CERTIFICATE);
|
|
- }
|
|
return NULL;
|
|
}
|
|
return SSL_get_peer_certificate(s);
|