summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl3.h
diff options
context:
space:
mode:
authorjsing <>2014-05-31 10:49:28 +0000
committerjsing <>2014-05-31 10:49:28 +0000
commitcc0b160e462358c219bef48df27be2e816b65194 (patch)
tree32a374445fa15f520b06510f07c011a6234df599 /src/lib/libssl/ssl3.h
parent57e924c96320c9b14de6078fc75984c949b073b2 (diff)
downloadopenbsd-cc0b160e462358c219bef48df27be2e816b65194.tar.gz
openbsd-cc0b160e462358c219bef48df27be2e816b65194.tar.bz2
openbsd-cc0b160e462358c219bef48df27be2e816b65194.zip
TLS would not be entirely functional without extensions, so unifdef
OPENSSL_NO_TLSEXT. 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 8633dae521..c264422a36 100644
--- a/src/lib/libssl/ssl3.h
+++ b/src/lib/libssl/ssl3.h
@@ -519,14 +519,12 @@ 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_TLSEXT
523#ifndef OPENSSL_NO_EC 522#ifndef OPENSSL_NO_EC
524 /* This is set to true if we believe that this is a version of Safari 523 /* This is set to true if we believe that this is a version of Safari
525 * running on OS X 10.6 or newer. We wish to know this because Safari 524 * running on OS X 10.6 or newer. We wish to know this because Safari
526 * on 10.8 .. 10.8.3 has broken ECDHE-ECDSA support. */ 525 * on 10.8 .. 10.8.3 has broken ECDHE-ECDSA support. */
527 char is_probably_safari; 526 char is_probably_safari;
528#endif /* !OPENSSL_NO_EC */ 527#endif /* !OPENSSL_NO_EC */
529#endif /* !OPENSSL_NO_TLSEXT */
530} SSL3_STATE; 528} SSL3_STATE;
531 529
532#endif 530#endif