From 71f018ba21859e02d874523882db0df27dbb40c4 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Mon, 29 Jan 2024 19:50:34 +1100 Subject: [PATCH] Removed unrequired patch The compile fix was when a FIXME was in the #else, which is no longer there. This patch is no longer required. --- ...ile-error-when-HAVE_GNUTLS_CIPHER_IN.patch | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 patches/Compiler_Warnings/0034-bcrypt-Stop-compile-error-when-HAVE_GNUTLS_CIPHER_IN.patch diff --git a/patches/Compiler_Warnings/0034-bcrypt-Stop-compile-error-when-HAVE_GNUTLS_CIPHER_IN.patch b/patches/Compiler_Warnings/0034-bcrypt-Stop-compile-error-when-HAVE_GNUTLS_CIPHER_IN.patch deleted file mode 100644 index 52d19add..00000000 --- a/patches/Compiler_Warnings/0034-bcrypt-Stop-compile-error-when-HAVE_GNUTLS_CIPHER_IN.patch +++ /dev/null @@ -1,40 +0,0 @@ -From eb21fcc668da85977bc86b6105f3830cb26c93e6 Mon Sep 17 00:00:00 2001 -From: Alistair Leslie-Hughes -Date: Tue, 8 Jun 2021 08:56:40 +1000 -Subject: [PATCH] bcrypt: Stop compile error when HAVE_GNUTLS_CIPHER_INIT not - defined -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -In file included from dlls/bcrypt/gnutls.c:1916: -include/windef.h:112:24: error: unknown type name ‘va_list’ - 112 | # define __ms_va_list va_list - | ^~~~~~~ -include/winbase.h:2076:84: note: in expansion of macro ‘__ms_va_list’ - 2076 | WINBASEAPI DWORD WINAPI FormatMessageA(DWORD,LPCVOID,DWORD,DWORD,LPSTR,DWORD,__ms_va_list*); - -Signed-off-by: Alistair Leslie-Hughes ---- - dlls/bcrypt/gnutls.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/dlls/bcrypt/gnutls.c b/dlls/bcrypt/gnutls.c -index d7b4499c692..11596d5f7ac 100644 ---- a/dlls/bcrypt/gnutls.c -+++ b/dlls/bcrypt/gnutls.c -@@ -24,9 +24,10 @@ - - #include "config.h" - -+#include -+ - #ifdef HAVE_GNUTLS_CIPHER_INIT - --#include - #include - #include - #include --- -2.33.0 -