and a minor patch

svn:r1215
This commit is contained in:
Roger Dingledine 2004-03-03 08:48:32 +00:00
parent 419a672222
commit 5e2e6555a2

View File

@ -251,7 +251,7 @@ static void conn_close_if_marked(int i) {
} 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? */