From: Roger Dingledine Date: Mon, 8 Sep 2003 23:10:24 +0000 (+0000) Subject: fix confirmed win32 bug X-Git-Tag: tor-0.0.2pre8~33 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c0f5ddcf33c82c85278ca027de65bfde585b7da2;p=thirdparty%2Ftor.git fix confirmed win32 bug svn:r435 --- diff --git a/src/or/buffers.c b/src/or/buffers.c index 1c0c599148..55bb2279f3 100644 --- a/src/or/buffers.c +++ b/src/or/buffers.c @@ -58,7 +58,7 @@ int read_to_buf(int s, int at_most, char **buf, int *buflen, int *buf_datalen, i } #ifdef MS_WINDOWS e = correct_socket_errno(s); - if(!ERRNO_EAGAIN(errno)) { /* no, it *is* a real error! */ + if(!ERRNO_EAGAIN(e)) { /* no, it *is* a real error! */ return -1; } #endif @@ -116,7 +116,7 @@ int flush_buf(int s, char **buf, int *buflen, int *buf_flushlen, int *buf_datale } #ifdef MS_WINDOWS e = correct_socket_errno(s); - if(!ERRNO_EAGAIN(errno)) { /* no, it *is* a real error! */ + if(!ERRNO_EAGAIN(e)) { /* no, it *is* a real error! */ return -1; } #endif