From: Dr. Stephen Henson Date: Tue, 31 Mar 2009 21:35:55 +0000 (+0000) Subject: Add update from 0.9.8-stable branch. X-Git-Tag: OpenSSL_1_0_0-beta1~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99bf5169081fc2c79605fdd3ca310e449ac2ccb4;p=openssl Add update from 0.9.8-stable branch. --- 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