commit | 10189984f9bd9b99652336f2255da5a7479eb7e6 | [log] [tgz] |
---|---|---|
author | Richard Levitte <levitte@openssl.org> | Sat Apr 06 11:58:04 2002 +0000 |
committer | Richard Levitte <levitte@openssl.org> | Sat Apr 06 11:58:04 2002 +0000 |
tree | 3406406569fdc7fb04027fe6a0f86925cb9e98d0 | |
parent | d8425465a3dbcb42f867b9b6402a26b03b9e49d3 [diff] [blame] |
Oops, the system macro for VMS is OPENSSL_SYS_VMS, not VMS
diff --git a/e_os.h b/e_os.h index 4436495..28bef94 100644 --- a/e_os.h +++ b/e_os.h
@@ -160,7 +160,7 @@ #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)