Fix export tests.
This commit is contained in:
@@ -915,8 +915,8 @@ SSL *s;
|
||||
if ((rsa == NULL) && (s->ctx->default_cert->rsa_tmp_cb != NULL))
|
||||
{
|
||||
rsa=s->ctx->default_cert->rsa_tmp_cb(s,
|
||||
(s->s3->tmp.new_cipher->algorithms|
|
||||
SSL_NOT_EXP)?0:1);
|
||||
!(s->s3->tmp.new_cipher->algorithms
|
||||
&SSL_NOT_EXP));
|
||||
CRYPTO_add(&rsa->references,1,CRYPTO_LOCK_RSA);
|
||||
cert->rsa_tmp=rsa;
|
||||
}
|
||||
@@ -938,8 +938,8 @@ SSL *s;
|
||||
dhp=cert->dh_tmp;
|
||||
if ((dhp == NULL) && (cert->dh_tmp_cb != NULL))
|
||||
dhp=cert->dh_tmp_cb(s,
|
||||
(s->s3->tmp.new_cipher->algorithms|
|
||||
SSL_NOT_EXP)?0:1);
|
||||
!(s->s3->tmp.new_cipher->algorithms
|
||||
&SSL_NOT_EXP));
|
||||
if (dhp == NULL)
|
||||
{
|
||||
al=SSL_AD_HANDSHAKE_FAILURE;
|
||||
|
||||
Reference in New Issue
Block a user