summaryrefslogtreecommitdiffstats
path: root/crypto/des
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-03-31 21:35:55 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-03-31 21:35:55 +0000
commit99bf5169081fc2c79605fdd3ca310e449ac2ccb4 (patch)
treec1a38549541bb05f78ab2c3977b20c6daeda30f6 /crypto/des
parenta26c372cfc0dfeb8f7a0444c70775511bb3f20df (diff)
Add update from 0.9.8-stable branch.
Diffstat (limited to 'crypto/des')
-rw-r--r--crypto/des/enc_read.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/crypto/des/enc_read.c b/crypto/des/enc_read.c
index 372ef667b8..b86620f568 100644
--- a/crypto/des/enc_read.c
+++ b/crypto/des/enc_read.c
@@ -150,11 +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
i=read(fd,(void *)&(net[net_num]),HDRSIZE-net_num);
-#else
- i=_read(fd,(void *)&(net[net_num]),HDRSIZE-net_num);
-#endif
#ifdef EINTR
if ((i == -1) && (errno == EINTR)) continue;
#endif