summaryrefslogtreecommitdiffstats
path: root/crypto/des/enc_read.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>1999-09-11 17:54:18 +0000
committerAndy Polyakov <appro@openssl.org>1999-09-11 17:54:18 +0000
commit17f389bbbfccf057a8bc04084ed068c4b368e751 (patch)
tree7daa85ce7f0f44aff61853dc10c5915d465ba43c /crypto/des/enc_read.c
parent5bdae1675c8b450bed091b9605ae9d10d61adfc7 (diff)
Initial support for MacOS.
This will soon be complemented with MacOS specific source code files and INSTALL.MacOS. I (Andy) have decided to get rid of a number of #include <sys/types.h>. I've verified it's ok (both by examining /usr/include/*.h and compiling) on a number of Unix platforms. Unfortunately I don't have Windows box to verify this on. I really appreciate if somebody could try to compile it and contact me a.s.a.p. in case a problem occurs. Submitted by: Roy Wood <roy@centricsystems.ca> Reviewed by: Andy Polyakov <appro@fy.chalmers.se>
Diffstat (limited to 'crypto/des/enc_read.c')
-rw-r--r--crypto/des/enc_read.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/des/enc_read.c b/crypto/des/enc_read.c
index 694970ccd2..7399ff7269 100644
--- a/crypto/des/enc_read.c
+++ b/crypto/des/enc_read.c
@@ -147,7 +147,7 @@ int des_enc_read(int fd, void *buf, int len, des_key_schedule sched,
/* first - get the length */
while (net_num < HDRSIZE)
{
- i=read(fd,&(net[net_num]),HDRSIZE-net_num);
+ i=read(fd,(void *)&(net[net_num]),HDRSIZE-net_num);
#ifdef EINTR
if ((i == -1) && (errno == EINTR)) continue;
#endif
@@ -169,7 +169,7 @@ int des_enc_read(int fd, void *buf, int len, des_key_schedule sched,
net_num=0;
while (net_num < rnum)
{
- i=read(fd,&(net[net_num]),rnum-net_num);
+ i=read(fd,(void *)&(net[net_num]),rnum-net_num);
#ifdef EINTR
if ((i == -1) && (errno == EINTR)) continue;
#endif