The branch OpenSSL_1_1_0-stable has been updated
via 88a3b5322170444d8d4003f6d8af82c3976c570b (commit)
from ffb1e659b2546cb704ef56ae01176b9062ef1c6f (commit)
- Log -----------------------------------------------------------------
commit 88a3b5322170444d8d4003f6d8af82c3976c570b
Author: Benjamin Kaduk <[email protected]>
Date: Thu Dec 29 11:38:24 2016 -0600
Use _WIN32 over WIN32 for preprocessor conditional
The intent seems to be that the WIN32 symbol is for things that are a direct
byproduct of being a windows-variant configuration and should be used for
feature en/disablement on windows systems. Use of the _WIN32 symbol is more
widespread, being used to implement platform portability of more generic
code.
We do define WIN32 in some situations in e_os.h, but that is not included
universally.
Reviewed-by: Andy Polyakov <[email protected]>
Reviewed-by: Rich Salz <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/2642)
(cherry picked from commit ac879ed62a19f3c878f7be3020a1b93cc77f4b38)
-----------------------------------------------------------------------
Summary of changes:
crypto/seed/seed.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crypto/seed/seed.c b/crypto/seed/seed.c
index c1e9285..d62da91 100644
--- a/crypto/seed/seed.c
+++ b/crypto/seed/seed.c
@@ -37,7 +37,7 @@
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
-# ifdef WIN32
+# ifdef _WIN32
# include <memory.h>
# endif
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits