Commit 0089a9df authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Fix from 1.0.0-stable

parent a5910673
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -176,7 +176,11 @@ int DES_enc_read(int fd, void *buf, int len, DES_key_schedule *sched,
	net_num=0;
	while (net_num < rnum)
		{
#ifndef OPENSSL_SYS_WIN32
		i=read(fd,(void *)&(net[net_num]),rnum-net_num);
#else
		i=_read(fd,(void *)&(net[net_num]),rnum-net_num);
#endif
#ifdef EINTR
		if ((i == -1) && (errno == EINTR)) continue;
#endif