summaryrefslogtreecommitdiff
path: root/lib/libssl/ssl3.h
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2014-05-31 10:53:40 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2014-05-31 10:53:40 +0000
commit486d8730c12ea3b5610563e8fce373a8a5afca4a (patch)
tree67fbfc15f986a7c9ea1bdd64c8dbe0db07c2ac08 /lib/libssl/ssl3.h
parent7d33e491ced254b4911a3c223bee944add414f9f (diff)
ECDH and ECDSA will not work overly well if there is no EC, so unifdef
OPENSSL_NO_EC. ok tedu@
Diffstat (limited to 'lib/libssl/ssl3.h')
-rw-r--r--lib/libssl/ssl3.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libssl/ssl3.h b/lib/libssl/ssl3.h
index c264422a364..1d2bc2f5c01 100644
--- a/lib/libssl/ssl3.h
+++ b/lib/libssl/ssl3.h
@@ -519,12 +519,10 @@ typedef struct ssl3_state_st {
int next_proto_neg_seen;
#endif
-#ifndef OPENSSL_NO_EC
/* This is set to true if we believe that this is a version of Safari
* running on OS X 10.6 or newer. We wish to know this because Safari
* on 10.8 .. 10.8.3 has broken ECDHE-ECDSA support. */
char is_probably_safari;
-#endif /* !OPENSSL_NO_EC */
} SSL3_STATE;
#endif