diff options
author | Theo Buehler <tb@openbsd.org> | 2023-07-05 13:25:58 -0600 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2023-07-05 13:25:58 -0600 |
commit | ed4831099aafd3780d094c9d4f157b59ebdbdcab (patch) | |
tree | 026cc17134cdbae3d45b50d1328cb0855cacdd65 /patches | |
parent | 9a00e9e1ceb21d12f4c280ff29ff688991b994dd (diff) | |
download | portable-ed4831099aafd3780d094c9d4f157b59ebdbdcab.tar.gz portable-ed4831099aafd3780d094c9d4f157b59ebdbdcab.tar.bz2 portable-ed4831099aafd3780d094c9d4f157b59ebdbdcab.zip |
Remove patch that was merged upstream
Diffstat (limited to 'patches')
-rw-r--r-- | patches/bio.h.patch | 35 |
1 files changed, 0 insertions, 35 deletions
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 @@ | |||
1 | --- include/openssl/bio.h.orig Tue Nov 22 21:08:27 2022 | ||
2 | +++ include/openssl/bio.h Tue Nov 22 21:08:48 2022 | ||
3 | @@ -667,8 +667,24 @@ void BIO_copy_next_retry(BIO *b); | ||
4 | |||
5 | /*long BIO_ghbn_ctrl(int cmd,int iarg,char *parg);*/ | ||
6 | |||
7 | +#ifdef __MINGW_PRINTF_FORMAT | ||
8 | int | ||
9 | BIO_printf(BIO *bio, const char *format, ...) | ||
10 | + __attribute__((__format__(__MINGW_PRINTF_FORMAT, 2, 3), __nonnull__(2))); | ||
11 | +int | ||
12 | +BIO_vprintf(BIO *bio, const char *format, va_list args) | ||
13 | + __attribute__((__format__(__MINGW_PRINTF_FORMAT, 2, 0), __nonnull__(2))); | ||
14 | +int | ||
15 | +BIO_snprintf(char *buf, size_t n, const char *format, ...) | ||
16 | + __attribute__((__deprecated__, __format__(__MINGW_PRINTF_FORMAT, 3, 4), | ||
17 | + __nonnull__(3))); | ||
18 | +int | ||
19 | +BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args) | ||
20 | + __attribute__((__deprecated__, __format__(__MINGW_PRINTF_FORMAT, 3, 0), | ||
21 | + __nonnull__(3))); | ||
22 | +#else | ||
23 | +int | ||
24 | +BIO_printf(BIO *bio, const char *format, ...) | ||
25 | __attribute__((__format__(__printf__, 2, 3), __nonnull__(2))); | ||
26 | int | ||
27 | BIO_vprintf(BIO *bio, const char *format, va_list args) | ||
28 | @@ -681,6 +697,7 @@ int | ||
29 | BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args) | ||
30 | __attribute__((__deprecated__, __format__(__printf__, 3, 0), | ||
31 | __nonnull__(3))); | ||
32 | +#endif | ||
33 | |||
34 | void ERR_load_BIO_strings(void); | ||
35 | |||