Skip to content
Snippets Groups Projects
Commit 1c9f8503 authored by Dirk Meyer's avatar Dirk Meyer
Browse files

ftp/vsftpd: fix build with openssl30

parent 49a6f185
No related branches found
No related tags found
No related merge requests found
......@@ -35,10 +35,9 @@ STACKPROTECTOR_DESC= Build with stack-protector
.if ${PORT_OPTIONS:MVSFTPD_SSL} && !defined(WITHOUT_SSL)
USES+= ssl
BROKEN_SSL= openssl30 openssl31
BROKEN_SSL_REASON= Requires OpenSSL 3.0.0 deprecated EC_* routines
SSL_SUFFIX= -ssl
CFLAGS+= -I${OPENSSLINC}
CFLAGS+= -Wno-deprecated-declarations
LDFLAGS+= -L${OPENSSLLIB}
.endif
......
......@@ -26,7 +26,23 @@
SSL_CTX_set_options(p_ctx, options);
if (tunable_rsa_cert_file)
{
@@ -683,7 +685,7 @@ ssl_cert_digest(SSL* p_ssl, struct vsf_session* p_sess
@@ -139,6 +141,7 @@ ssl_init(struct vsf_session* p_sess)
{
die("SSL: RNG is not seeded");
}
+#if OPENSSL_VERSION_NUMBER < 0x10200000L
{
EC_KEY* key = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1);
if (key == NULL)
@@ -148,6 +151,7 @@ ssl_init(struct vsf_session* p_sess)
SSL_CTX_set_tmp_ecdh(p_ctx, key);
EC_KEY_free(key);
}
+#endif
if (tunable_ssl_request_cert)
{
verify_option |= SSL_VERIFY_PEER;
@@ -683,7 +687,7 @@ ssl_cert_digest(SSL* p_ssl, struct vsf_session* p_sess
}
static char*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment