Commit 568b8020 authored by Rich Salz's avatar Rich Salz Committed by Rich Salz
Browse files

RT4033: Use OPENSSL_SYS_UNIX not "unix"



Real fix for RT 4033

Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
parent 0e04674e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -115,6 +115,7 @@
# include "e_os.h"
# include <assert.h>

# include <openssl/e_os2.h>
# include <openssl/bio.h>
# include <openssl/x509.h>
# include <openssl/lhash.h>
+2 −2
Original line number Diff line number Diff line
@@ -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__) */