[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] and a minor patch
Update of /home/or/cvsroot/src/or
In directory moria.mit.edu:/home2/arma/work/onion/cvs/src/or
Modified Files:
main.c
Log Message:
and a minor patch
Index: main.c
===================================================================
RCS file: /home/or/cvsroot/src/or/main.c,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- main.c 3 Mar 2004 08:46:18 -0000 1.191
+++ main.c 3 Mar 2004 08:48:32 -0000 1.192
@@ -251,7 +251,7 @@
} else {
retval = flush_buf(conn->s, conn->outbuf, &conn->outbuf_flushlen);
}
- if(retval == 0 &&
+ if(retval >= 0 &&
conn->hold_open_until_flushed && connection_wants_to_flush(conn)) {
log_fn(LOG_INFO,"Holding conn (fd %d) open for more flushing.",conn->s);
/* XXX should we reset timestamp_lastwritten here? */