summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl3.h
diff options
context:
space:
mode:
authorjsing <>2014-05-31 10:53:39 +0000
committerjsing <>2014-05-31 10:53:39 +0000
commit882f8679176351a177621f8bd38a2046612d47e5 (patch)
treecea4d337f9a4c116882a3406ccc08e588dd003fb /src/lib/libssl/ssl3.h
parentd665bfa277b1e81363c3e394b17836a6a84475e9 (diff)
downloadopenbsd-882f8679176351a177621f8bd38a2046612d47e5.tar.gz
openbsd-882f8679176351a177621f8bd38a2046612d47e5.tar.bz2
openbsd-882f8679176351a177621f8bd38a2046612d47e5.zip
ECDH and ECDSA will not work overly well if there is no EC, so unifdef
OPENSSL_NO_EC. ok tedu@
Diffstat (limited to 'src/lib/libssl/ssl3.h')
-rw-r--r--src/lib/libssl/ssl3.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl3.h b/src/lib/libssl/ssl3.h
index c264422a36..1d2bc2f5c0 100644
--- a/src/lib/libssl/ssl3.h
+++ b/src/lib/libssl/ssl3.h
@@ -519,12 +519,10 @@ typedef struct ssl3_state_st {
519 int next_proto_neg_seen; 519 int next_proto_neg_seen;
520#endif 520#endif
521 521
522#ifndef OPENSSL_NO_EC
523 /* This is set to true if we believe that this is a version of Safari 522 /* This is set to true if we believe that this is a version of Safari
524 * running on OS X 10.6 or newer. We wish to know this because Safari 523 * running on OS X 10.6 or newer. We wish to know this because Safari
525 * on 10.8 .. 10.8.3 has broken ECDHE-ECDSA support. */ 524 * on 10.8 .. 10.8.3 has broken ECDHE-ECDSA support. */
526 char is_probably_safari; 525 char is_probably_safari;
527#endif /* !OPENSSL_NO_EC */
528} SSL3_STATE; 526} SSL3_STATE;
529 527
530#endif 528#endif