summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/ssl/ssl3.h
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2014-05-31 10:49:28 +0000
committerjsing <jsing@openbsd.org>2014-05-31 10:49:28 +0000
commit1faa0e499708c894964780c27c8412b45faae6dd (patch)
treeba68e1397bfa16390078f07ba332cf537b4e9c96 /lib/libssl/src/ssl/ssl3.h
parentDelete the extraneous "return" statement at the end of a void function. (diff)
downloadwireguard-openbsd-1faa0e499708c894964780c27c8412b45faae6dd.tar.xz
wireguard-openbsd-1faa0e499708c894964780c27c8412b45faae6dd.zip
TLS would not be entirely functional without extensions, so unifdef
OPENSSL_NO_TLSEXT. ok tedu@
Diffstat (limited to 'lib/libssl/src/ssl/ssl3.h')
-rw-r--r--lib/libssl/src/ssl/ssl3.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libssl/src/ssl/ssl3.h b/lib/libssl/src/ssl/ssl3.h
index 8633dae5217..c264422a364 100644
--- a/lib/libssl/src/ssl/ssl3.h
+++ b/lib/libssl/src/ssl/ssl3.h
@@ -519,14 +519,12 @@ typedef struct ssl3_state_st {
int next_proto_neg_seen;
#endif
-#ifndef OPENSSL_NO_TLSEXT
#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 */
-#endif /* !OPENSSL_NO_TLSEXT */
} SSL3_STATE;
#endif