mirror of https://github.com/openssl/openssl.git
fuzz/dtlsserver.c: Remove incorrect ifdef guard
Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/28102)
This commit is contained in:
parent
fcb5e20ac7
commit
fd7fc90346
|
@ -590,10 +590,7 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len)
|
||||||
SSL *server;
|
SSL *server;
|
||||||
BIO *in;
|
BIO *in;
|
||||||
BIO *out;
|
BIO *out;
|
||||||
#if !defined(OPENSSL_NO_EC) \
|
|
||||||
|| (!defined(OPENSSL_NO_DSA) && !defined(OPENSSL_NO_DEPRECATED_3_0))
|
|
||||||
BIO *bio_buf;
|
BIO *bio_buf;
|
||||||
#endif
|
|
||||||
SSL_CTX *ctx;
|
SSL_CTX *ctx;
|
||||||
int ret;
|
int ret;
|
||||||
#ifndef OPENSSL_NO_DEPRECATED_3_0
|
#ifndef OPENSSL_NO_DEPRECATED_3_0
|
||||||
|
|
Loading…
Reference in New Issue