From bb65e20b1cc12f928a2e22765a00d938d1a12ced Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Mon, 4 Jan 1999 20:11:31 +0000 Subject: [PATCH] Remove the bugfix that was really a bug. Submitted by: Arne Ansper --- CHANGES | 3 +++ crypto/bio/bss_sock.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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 -- GitLab