summaryrefslogtreecommitdiffstats
path: root/apps/rehash.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-09-16 22:17:55 -0400
committerRich Salz <rsalz@openssl.org>2015-09-17 12:05:14 -0400
commit568b80206a0a59e4e33abf569b9bef5f8564b36b (patch)
treec56f5b35378ac51376dc7804011247c0be82dab5 /apps/rehash.c
parent0e04674e964b905e67e3d215bcf888932c92765f (diff)
RT4033: Use OPENSSL_SYS_UNIX not "unix"
Real fix for RT 4033 Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/rehash.c')
-rw-r--r--apps/rehash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/rehash.c b/apps/rehash.c
index fdaba6af30..c8bfb05b78 100644
--- a/apps/rehash.c
+++ b/apps/rehash.c
@@ -59,7 +59,7 @@
#include "apps.h"
-#if defined(unix) || defined(__APPLE__)
+#if defined(OPENSSL_SYS_UNIX) || defined(__APPLE__)
# include <unistd.h>
# include <stdio.h>
# include <limits.h>
@@ -488,4 +488,4 @@ int rehash_main(int argc, char **argv)
return (1);
}
-#endif /* defined(unix) || defined(__APPLE__) */
+#endif /* defined(OPENSSL_SYS_UNIX) || defined(__APPLE__) */