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
commitf6e83696cca45f0d0392ebe733e48b8bd94ebb47 (patch)
treecea4d337f9a4c116882a3406ccc08e588dd003fb /src/lib/libssl/ssl3.h
parentcc0b160e462358c219bef48df27be2e816b65194 (diff)
downloadopenbsd-f6e83696cca45f0d0392ebe733e48b8bd94ebb47.tar.gz
openbsd-f6e83696cca45f0d0392ebe733e48b8bd94ebb47.tar.bz2
openbsd-f6e83696cca45f0d0392ebe733e48b8bd94ebb47.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