diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2020-01-21 11:11:43 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2020-01-21 11:11:43 +0000 |
commit | 3082410b9705f72cb7d132bc75ffd4e1edba033c (patch) | |
tree | c4decba79f0de1c6f49d75308437b79b2eb2f692 | |
parent | 81abd9eb2a3b1a7a2701b135fdf6f19ae10d86d4 (diff) |
Whack last remaining LIBRESSL_VERSION_NUMBER check in the C code.
-rw-r--r-- | usr.sbin/bind/lib/dns/opensslrsa_link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bind/lib/dns/opensslrsa_link.c b/usr.sbin/bind/lib/dns/opensslrsa_link.c index 31158e4f5e8..adfd99de2ce 100644 --- a/usr.sbin/bind/lib/dns/opensslrsa_link.c +++ b/usr.sbin/bind/lib/dns/opensslrsa_link.c @@ -93,7 +93,7 @@ (rsa)->flags &= ~(RSA_FLAG_CACHE_PUBLIC | RSA_FLAG_CACHE_PRIVATE); \ (rsa)->flags &= ~RSA_FLAG_BLINDING; \ } while (0) -#elif OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) +#elif OPENSSL_VERSION_NUMBER < 0x10100000L #if defined(RSA_FLAG_NO_BLINDING) #define SET_FLAGS(rsa) \ do { \ |