From ed4831099aafd3780d094c9d4f157b59ebdbdcab Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Wed, 5 Jul 2023 13:25:58 -0600 Subject: Remove patch that was merged upstream --- patches/bio.h.patch | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 patches/bio.h.patch diff --git a/patches/bio.h.patch b/patches/bio.h.patch deleted file mode 100644 index f731879..0000000 --- a/patches/bio.h.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- include/openssl/bio.h.orig Tue Nov 22 21:08:27 2022 -+++ include/openssl/bio.h Tue Nov 22 21:08:48 2022 -@@ -667,8 +667,24 @@ void BIO_copy_next_retry(BIO *b); - - /*long BIO_ghbn_ctrl(int cmd,int iarg,char *parg);*/ - -+#ifdef __MINGW_PRINTF_FORMAT - int - BIO_printf(BIO *bio, const char *format, ...) -+ __attribute__((__format__(__MINGW_PRINTF_FORMAT, 2, 3), __nonnull__(2))); -+int -+BIO_vprintf(BIO *bio, const char *format, va_list args) -+ __attribute__((__format__(__MINGW_PRINTF_FORMAT, 2, 0), __nonnull__(2))); -+int -+BIO_snprintf(char *buf, size_t n, const char *format, ...) -+ __attribute__((__deprecated__, __format__(__MINGW_PRINTF_FORMAT, 3, 4), -+ __nonnull__(3))); -+int -+BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args) -+ __attribute__((__deprecated__, __format__(__MINGW_PRINTF_FORMAT, 3, 0), -+ __nonnull__(3))); -+#else -+int -+BIO_printf(BIO *bio, const char *format, ...) - __attribute__((__format__(__printf__, 2, 3), __nonnull__(2))); - int - BIO_vprintf(BIO *bio, const char *format, va_list args) -@@ -681,6 +697,7 @@ int - BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args) - __attribute__((__deprecated__, __format__(__printf__, 3, 0), - __nonnull__(3))); -+#endif - - void ERR_load_BIO_strings(void); - -- cgit v1.2.3-55-g6feb