]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tests/server/util.h: align WIN32 condition with util.c
authorMarc Hoersken <info@marc-hoersken.de>
Mon, 14 Mar 2022 23:16:46 +0000 (00:16 +0100)
committerMarc Hoersken <info@marc-hoersken.de>
Wed, 23 Mar 2022 04:00:04 +0000 (05:00 +0100)
There is no need to test for both _WIN32 and WIN32 as curl_setup.h
automatically defines the later if the first one is defined.

Also tests/server/util.c is only checking for WIN32 arouund the
implementation of win32_perror, so just defining _WIN32
would not be sufficient for a successful compilation.

Reviewed-by: Daniel Stenberg
Reviewed-by: Jay Satiro
Closes #8594

tests/server/util.h

index ae05b5935022c9e4e7a54db28daee24b49fd27d1..f67b685279546daa2651084d92d1bbad8d062710 100644 (file)
@@ -40,7 +40,7 @@ extern const char *serverlogfile;
 
 extern const char *cmdfile;
 
-#if defined(WIN32) || defined(_WIN32)
+#ifdef WIN32
 #include <process.h>
 #include <fcntl.h>
 
@@ -49,9 +49,7 @@ extern const char *cmdfile;
 #undef perror
 #define perror(m) win32_perror(m)
 void win32_perror(const char *msg);
-#endif  /* WIN32 or _WIN32 */
 
-#ifdef WIN32
 void win32_init(void);
 void win32_cleanup(void);
 #endif  /* WIN32 */