summaryrefslogtreecommitdiffstats
path: root/crypto/des/enc_read.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/des/enc_read.c')
-rw-r--r--crypto/des/enc_read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/des/enc_read.c b/crypto/des/enc_read.c
index e7c853f5cc..edb6620d08 100644
--- a/crypto/des/enc_read.c
+++ b/crypto/des/enc_read.c
@@ -150,7 +150,7 @@ int DES_enc_read(int fd, void *buf, int len, DES_key_schedule *sched,
/* first - get the length */
while (net_num < HDRSIZE)
{
-#ifndef _WIN32
+#ifndef OPENSSL_SYS_WIN32
i=read(fd,(void *)&(net[net_num]),HDRSIZE-net_num);
#else
i=_read(fd,(void *)&(net[net_num]),HDRSIZE-net_num);