From 1bbf192cfbe819b424ae3493be382455a3647586 Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Thu, 4 Dec 2025 23:38:55 +0100 Subject: [PATCH] package/vsftpd: fix build with gcc >= 15.x when openssl is enabled Fixes: https://autobuild.buildroot.net/results/661edeafc949390df397fd40a8035330238cbe8a/ Signed-off-by: Bernd Kuhls Signed-off-by: Thomas Petazzoni (cherry picked from commit 1063c73edccd3c027d8e76d5e97941624e137873) Signed-off-by: Thomas Perale --- ...ted-non-prototype-warning-with-clang.patch | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 package/vsftpd/0004-Fix-Wdeprecated-non-prototype-warning-with-clang.patch diff --git a/package/vsftpd/0004-Fix-Wdeprecated-non-prototype-warning-with-clang.patch b/package/vsftpd/0004-Fix-Wdeprecated-non-prototype-warning-with-clang.patch new file mode 100644 index 0000000000..ec305bf6bc --- /dev/null +++ b/package/vsftpd/0004-Fix-Wdeprecated-non-prototype-warning-with-clang.patch @@ -0,0 +1,25 @@ +From 2bdb7ddbfcf6481ed7662d3d4eb5a3dc83d50224 Mon Sep 17 00:00:00 2001 +From: Tom Stellard +Date: Fri, 28 Oct 2022 05:35:11 +0000 +Subject: [PATCH] Fix -Wdeprecated-non-prototype warning with clang + +Upstream: https://github.com/InfrastructureServices/vsftpd/pull/6 + +Signed-off-by: Bernd Kuhls +--- + ssl.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/ssl.c b/ssl.c +index d401203..8826b05 100644 +--- a/ssl.c ++++ b/ssl.c +@@ -36,7 +36,7 @@ + static char* get_ssl_error(); + static SSL* get_ssl(struct vsf_session* p_sess, int fd); + static int ssl_session_init(struct vsf_session* p_sess); +-static void setup_bio_callbacks(); ++static void setup_bio_callbacks(SSL *p_ssl); + static long bio_callback( + BIO* p_bio, int oper, const char* p_arg, int argi, long argl, long retval); + static int ssl_verify_callback(int verify_ok, X509_STORE_CTX* p_ctx);