summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDaniel Fiala <daniel@openssl.org>2022-09-27 06:01:25 +0200
committerHugo Landau <hlandau@openssl.org>2022-10-04 11:53:38 +0100
commita1de5eb88479515535e5de090ded800455c3d4a7 (patch)
treea9efa18bb880f25b126da9dc09bb521361cfca04 /include
parentc62a9cd720eccdbb388890ee4a36801d01315be4 (diff)
Disable printf format checking on MinGW
Fixes openssl#19185 Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19292)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/bio.h.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/openssl/bio.h.in b/include/openssl/bio.h.in
index e413bb41cb..6105c602fd 100644
--- a/include/openssl/bio.h.in
+++ b/include/openssl/bio.h.in
@@ -870,6 +870,7 @@ void BIO_copy_next_retry(BIO *b);
# define ossl_bio__attr__(x)
# if defined(__GNUC__) && defined(__STDC_VERSION__) \
+ && !defined(__MINGW32__) && !defined(__MINGW64__) \
&& !defined(__APPLE__)
/*
* Because we support the 'z' modifier, which made its appearance in C99,