summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-02-23 14:41:20 +0100
committerRichard Levitte <levitte@openssl.org>2017-02-23 15:18:29 +0100
commit6db2b1490e5da1255f4158dc8c2d4a2dd87cbe7b (patch)
tree947aa2b1184f9ea585d2743c4f862e93fce7dc5a /apps
parent7d02309a1622a804668a22f9cfbe9c5e49dead9a (diff)
Check for the presence of _WIN32 rather than its value.
Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2727) (cherry picked from commit 46958a043d51633ed36bcfb13ff048a3381366a6)
Diffstat (limited to 'apps')
-rw-r--r--apps/rehash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/rehash.c b/apps/rehash.c
index 7d379b8c8f..f0eb07883d 100644
--- a/apps/rehash.c
+++ b/apps/rehash.c
@@ -287,10 +287,10 @@ static int ends_with_dirsep(const char *path)
{
if (*path != '\0')
path += strlen(path) - 1;
-# ifdef __VMS
+# if defined __VMS
if (*path == ']' || *path == '>' || *path == ':')
return 1;
-# elif _WIN32
+# elif defined _WIN32
if (*path == '\\')
return 1;
# endif