From: Ben Laurie Date: Mon, 4 Jan 1999 20:11:31 +0000 (+0000) Subject: Remove the bugfix that was really a bug. X-Git-Tag: OpenSSL_0_9_2b~278 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bb65e20b1cc12f928a2e22765a00d938d1a12ced;p=oweals%2Fopenssl.git Remove the bugfix that was really a bug. Submitted by: Arne Ansper --- diff --git a/CHANGES b/CHANGES index c9ea66ee74..36064507e8 100644 --- a/CHANGES +++ b/CHANGES @@ -5,6 +5,9 @@ Changes between 0.9.1c and 0.9.2 + *) BIO_s_socket() had a broken should_retry() on Windoze. + [Arne Ansper ] + *) BIO_f_buffer() didn't pass on BIO_CTRL_FLUSH. [Arne Ansper ] diff --git a/crypto/bio/bss_sock.c b/crypto/bio/bss_sock.c index a664377d39..299787aa1d 100644 --- a/crypto/bio/bss_sock.c +++ b/crypto/bio/bss_sock.c @@ -385,7 +385,7 @@ int i; err=get_last_sys_error(); #endif -#if defined(WINDOWS) /* more microsoft stupidity */ +#if defined(WINDOWS) && 0 /* more microsoft stupidity *//* perhaps not? Ben 4/1/99 */ if ((i == -1) && (err == 0)) return(1); #endif