From 40bd33ee01803be42ad1740413fb1362a24acb74 Mon Sep 17 00:00:00 2001 From: olszomal Date: Mon, 4 Apr 2022 08:59:35 +0200 Subject: [PATCH] fix Windows build with MSVC compiler --- osslsigncode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/osslsigncode.c b/osslsigncode.c index 8568210..989d1bb 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -61,9 +61,9 @@ #define OPENSSL_API_COMPAT 0x10100000L #define OPENSSL_NO_DEPRECATED -#ifdef __MINGW32__ +#if defined(_MSC_VER) || defined(MINGW32) #define HAVE_WINDOWS_H -#endif /* __MINGW32__ */ +#endif /* _MSC_VER || MINGW32 */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -2910,7 +2910,7 @@ static int verify_signature(SIGNATURE *signature, GLOBAL_OPTIONS *options) printf("Timestamp Server Signature verification: %s\n", timeok ? "ok" : "failed"); if (!timeok) { signature->time = INVALID_TIME; - } + } } else { printf("\nTimestamp Server Signature verification is disabled\n\n"); signature->time = INVALID_TIME;