From: Richard Levitte Date: Sat, 6 Apr 2002 11:57:58 +0000 (+0000) Subject: Oops, the system macro for VMS is OPENSSL_SYS_VMS, not VMS X-Git-Tag: OpenSSL_0_9_7-beta1~120 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f60df86c899cc90d4d0d9d8a4d3591ac27218620;p=oweals%2Fopenssl.git Oops, the system macro for VMS is OPENSSL_SYS_VMS, not VMS --- diff --git a/e_os.h b/e_os.h index 4436495c69..28bef94bbd 100644 --- a/e_os.h +++ b/e_os.h @@ -160,7 +160,7 @@ extern "C" { #define closesocket(s) MacSocket_close(s) #define readsocket(s,b,n) MacSocket_recv((s),(b),(n),true) #define writesocket(s,b,n) MacSocket_send((s),(b),(n)) -#elif defined(VMS) +#elif defined(OPENSSL_SYS_VMS) #define get_last_socket_error() errno #define clear_socket_error() errno=0 #define ioctlsocket(a,b,c) ioctl(a,b,c)