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

ITS#5585

parent 0bce484d
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,7 @@ OpenLDAP 2.4.11 Engineering ...@@ -4,6 +4,7 @@ OpenLDAP 2.4.11 Engineering
Fixed liblber ber_get_next length decoding (ITS#5580) Fixed liblber ber_get_next length decoding (ITS#5580)
Added libldap assertion control (ITS#5560) Added libldap assertion control (ITS#5560)
Fixed libldap GnuTLS CRL result handling (ITS#5577) Fixed libldap GnuTLS CRL result handling (ITS#5577)
Fixed libldap GnuTLS SSF computation (ITS#5585)
Fixed slapd check for structural_class failures (ITS#5540) Fixed slapd check for structural_class failures (ITS#5540)
Fixed slapd config backend renumbering (ITS#5571) Fixed slapd config backend renumbering (ITS#5571)
Fixed slapd configContext OID (ITS#5383) Fixed slapd configContext OID (ITS#5383)
......
...@@ -2795,7 +2795,7 @@ ldap_pvt_tls_get_strength( void *s ) ...@@ -2795,7 +2795,7 @@ ldap_pvt_tls_get_strength( void *s )
gnutls_cipher_algorithm_t c; gnutls_cipher_algorithm_t c;
c = gnutls_cipher_get( session->session ); c = gnutls_cipher_get( session->session );
return gnutls_cipher_get_key_size( c ); return gnutls_cipher_get_key_size( c ) * 8;
#else #else
return 0; return 0;
#endif #endif
......
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