Remove the bugfix that was really a bug.

Submitted by: Arne Ansper <arne@ats.cyber.ee>
This commit is contained in:
Ben Laurie 1999-01-04 20:11:31 +00:00
parent b5e406f755
commit bb65e20b1c
2 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,9 @@
Changes between 0.9.1c and 0.9.2 Changes between 0.9.1c and 0.9.2
*) BIO_s_socket() had a broken should_retry() on Windoze.
[Arne Ansper <arne@ats.cyber.ee>]
*) BIO_f_buffer() didn't pass on BIO_CTRL_FLUSH. *) BIO_f_buffer() didn't pass on BIO_CTRL_FLUSH.
[Arne Ansper <arne@ats.cyber.ee>] [Arne Ansper <arne@ats.cyber.ee>]

View File

@ -385,7 +385,7 @@ int i;
err=get_last_sys_error(); err=get_last_sys_error();
#endif #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)) if ((i == -1) && (err == 0))
return(1); return(1);
#endif #endif