diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-07-13 14:28:10 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-07-13 14:28:10 +0000 |
commit | 2547db1b8e0f1829585bf6cd54b3937a59f09c00 (patch) | |
tree | 61142be57c7422ad0a618938ef27e8f7dda2e1f4 /lib | |
parent | cf5a32b2c173b13a5e87ebe0412f31452e989284 (diff) |
Remove #ifndef around the definition of OPENSSL_TLS_SECURITY_LEVEL.
We do not intend to make this a compile-time option.
Reminded by schwarze who asked about it
ok jsing
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/tls1.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libssl/tls1.h b/lib/libssl/tls1.h index 0dadffc8e6a..0c7e4a0f0bc 100644 --- a/lib/libssl/tls1.h +++ b/lib/libssl/tls1.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tls1.h,v 1.54 2022/07/07 13:02:59 tb Exp $ */ +/* $OpenBSD: tls1.h,v 1.55 2022/07/13 14:28:09 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -159,9 +159,7 @@ extern "C" { #endif -#ifndef OPENSSL_TLS_SECURITY_LEVEL #define OPENSSL_TLS_SECURITY_LEVEL 1 -#endif #define TLS1_ALLOW_EXPERIMENTAL_CIPHERSUITES 0 |