Remove the bugfix that was really a bug.
Submitted by: Arne Ansper <arne@ats.cyber.ee>
This commit is contained in:
parent
b5e406f755
commit
bb65e20b1c
2 changed files with 4 additions and 1 deletions
3
CHANGES
3
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 <arne@ats.cyber.ee>]
|
||||
|
||||
*) BIO_f_buffer() didn't pass on BIO_CTRL_FLUSH.
|
||||
[Arne Ansper <arne@ats.cyber.ee>]
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue