diff options
author | jsing <> | 2014-05-31 10:53:39 +0000 |
---|---|---|
committer | jsing <> | 2014-05-31 10:53:39 +0000 |
commit | f6e83696cca45f0d0392ebe733e48b8bd94ebb47 (patch) | |
tree | cea4d337f9a4c116882a3406ccc08e588dd003fb /src/lib/libssl/ssl3.h | |
parent | cc0b160e462358c219bef48df27be2e816b65194 (diff) | |
download | openbsd-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.h | 2 |
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 |