mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 09:39:45 -05:00
ITS#7285 Mozilla NSS: default cipher suite always selected
This commit is contained in:
parent
3f46f2e0bc
commit
2c2bb2e7ae
1 changed files with 7 additions and 6 deletions
|
|
@ -2218,12 +2218,13 @@ tlsm_deferred_ctx_init( void *arg )
|
|||
return -1;
|
||||
}
|
||||
|
||||
if ( lt->lt_ciphersuite &&
|
||||
tlsm_parse_ciphers( ctx, lt->lt_ciphersuite )) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"TLS: could not set cipher list %s.\n",
|
||||
lt->lt_ciphersuite, 0, 0 );
|
||||
return -1;
|
||||
if ( lt->lt_ciphersuite ) {
|
||||
if ( tlsm_parse_ciphers( ctx, lt->lt_ciphersuite ) ) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"TLS: could not set cipher list %s.\n",
|
||||
lt->lt_ciphersuite, 0, 0 );
|
||||
return -1;
|
||||
}
|
||||
} else if ( tlsm_parse_ciphers( ctx, "DEFAULT" ) ) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"TLS: could not set cipher list DEFAULT.\n",
|
||||
|
|
|
|||
Loading…
Reference in a new issue