From: Roger Dingledine Date: Sun, 28 Nov 2004 06:33:14 +0000 (+0000) Subject: one of the debugging aids was misleading X-Git-Tag: tor-0.0.9rc4~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dad760ddd1f4e61009981aa09b2417f10763864c;p=thirdparty%2Ftor.git one of the debugging aids was misleading svn:r3000 --- diff --git a/src/or/relay.c b/src/or/relay.c index 4e3534baa1..72a80d0de3 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -703,8 +703,8 @@ connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, stats_n_data_bytes_received += rh.length; if(conn->type == CONN_TYPE_AP) { - log_fn(LOG_DEBUG,"%d: stream size now %d.", conn->s, (int)conn->stream_size); conn->stream_size += rh.length; + log_fn(LOG_DEBUG,"%d: stream size now %d.", conn->s, (int)conn->stream_size); } connection_write_to_buf(cell->payload + RELAY_HEADER_SIZE, rh.length, conn);