summaryrefslogtreecommitdiffstats
path: root/e_os.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2005-06-05 21:47:19 +0000
committerRichard Levitte <levitte@openssl.org>2005-06-05 21:47:19 +0000
commit9e5b378081f288aec64f87261acff8639fd0d0eb (patch)
treee81df7aa845abaf5e67f2fa8dab71e1e4ff9db83 /e_os.h
parent7ed876533aa7c8e721836c25cef737c3643f5e55 (diff)
Updated support for NetWare, submitted by Verdon Walker <VWalker@novell.com>.
PR: 1098
Diffstat (limited to 'e_os.h')
-rw-r--r--e_os.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/e_os.h b/e_os.h
index cf76632b1e..54982cee00 100644
--- a/e_os.h
+++ b/e_os.h
@@ -438,11 +438,7 @@ extern HINSTANCE _hInstance;
# elif defined(OPENSSL_SYS_NETWARE)
/* NetWare uses the WinSock2 interfaces
*/
-# if defined(NETWARE_CLIB)
-# include <ws2nlm.h>
-# elif defined(NETWARE_LIBC)
-# include <novsock2.h>
-# endif
+# include <novsock2.h>
# define SSLeay_Write(a,b,c) send((a),(b),(c),0)
# define SSLeay_Read(a,b,c) recv((a),(b),(c),0)
# define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); }