diff options
author | Roger Dingledine <arma@torproject.org> | 2004-12-25 06:42:15 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-12-25 06:42:15 +0000 |
commit | 288f2ed59e54e24b9c98f55c046d86da94e5d789 (patch) | |
tree | 3c47195062fe24fc7c545a07f5b995b4fc0814f6 /src | |
parent | be72937ab0205359f4044c553bb172405211e6ae (diff) | |
download | tor-288f2ed59e54e24b9c98f55c046d86da94e5d789.tar.gz tor-288f2ed59e54e24b9c98f55c046d86da94e5d789.zip |
stop telling win32 folks they have a bug just because we haven't finished
making tor work on win32 yet.
svn:r3227
Diffstat (limited to 'src')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/main.c b/src/or/main.c index 1b072cbe12..57843ab348 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -281,8 +281,10 @@ static void conn_read(int i) { connection_handle_read(conn) < 0) { if (!conn->marked_for_close) { /* this connection is broken. remove it */ +#ifndef MS_WINDOWS log_fn(LOG_WARN,"Bug: unhandled error on read for %s connection (fd %d); removing", CONN_TYPE_TO_STRING(conn->type), conn->s); +#endif connection_mark_for_close(conn); } } |