summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorRob Stradling <rob@comodo.com>2013-09-10 13:04:05 +0100
committerBen Laurie <ben@links.org>2013-10-04 14:55:01 +0100
commit5ac97868079750bd4e0baf0aeffeda131d7980ff (patch)
tree504cc07e056d2e34ad99290402dce1611eba5293 /ssl
parent0b05204c4e03e924357337f6a437743bcbf37820 (diff)
Fix compilation with this branch's definition of SSL_CIPHER.
Diffstat (limited to 'ssl')
-rw-r--r--ssl/s3_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index 531063679d..fc723a00a9 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -2404,7 +2404,7 @@ SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt,
if (j >= 0)
{
#if !defined(OPENSSL_NO_EC) && !defined(OPENSSL_NO_TLSEXT)
- if ((alg_k & SSL_kEECDH) && (alg_a & SSL_aECDSA) && s->s3->is_probably_safari)
+ if ((alg & SSL_kECDHE) && (alg & SSL_aECDSA) && s->s3->is_probably_safari)
{
if (!ret) ret=sk_SSL_CIPHER_value(allow,j);
continue;