[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] stop telling win32 folks they have a bug just because we ha...
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] stop telling win32 folks they have a bug just because we ha...
- From: arma@xxxxxxxx (Roger Dingledine)
- Date: Sat, 25 Dec 2004 01:42:18 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Sat, 25 Dec 2004 01:42:38 -0500
- Reply-to: or-dev@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Update of /home2/or/cvsroot/tor/src/or
In directory moria.mit.edu:/home2/arma/work/onion/cvs/tor/src/or
Modified Files:
main.c
Log Message:
stop telling win32 folks they have a bug just because we haven't finished
making tor work on win32 yet.
Index: main.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/main.c,v
retrieving revision 1.409
retrieving revision 1.410
diff -u -d -r1.409 -r1.410
--- main.c 22 Dec 2004 05:29:05 -0000 1.409
+++ main.c 25 Dec 2004 06:42:15 -0000 1.410
@@ -281,8 +281,10 @@
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);
}
}