summaryrefslogtreecommitdiffstats
path: root/crypto/des
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-03-31 21:45:29 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-03-31 21:45:29 +0000
commit49cb959494bf4488543a709022a3d7372b8c9256 (patch)
tree4fbceb297e9c35ff9dd2284df61b526f52f43b76 /crypto/des
parent783a73c47f34895f500a34d316b2104b28f2b184 (diff)
Use OPENSSL_SYS_WIN32 instead of _WIN32
Diffstat (limited to 'crypto/des')
-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 372ef667b8..c1f46810d2 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);