summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-11-26 03:43:54 +0000
committerRoger Dingledine <arma@torproject.org>2004-11-26 03:43:54 +0000
commit02a30a348a3ad2cb42dbfc4f36b5bbe7e9f80d84 (patch)
treebaa53f9fb93e6709a329f74cc2dc132f8c6f9f6a
parent179ad27b34bc29cb47fbfa4d579986c44a50a325 (diff)
downloadtor-02a30a348a3ad2cb42dbfc4f36b5bbe7e9f80d84.tar.gz
tor-02a30a348a3ad2cb42dbfc4f36b5bbe7e9f80d84.zip
give up trying to track down the reason we're calling package_inbuf
with a package window of 0. it's safe to just catch the error cases there and do the right thing. svn:r2988
-rw-r--r--src/or/relay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/relay.c b/src/or/relay.c
index 41c0bc77c9..4e3534baa1 100644
--- a/src/or/relay.c
+++ b/src/or/relay.c
@@ -879,7 +879,7 @@ repeat_connection_edge_package_raw_inbuf:
return 0;
if(conn->package_window <= 0) {
- log_fn(LOG_WARN,"called with package_window %d. Tell Roger.", conn->package_window);
+ log_fn(LOG_INFO,"called with package_window %d. Skipping.", conn->package_window);
connection_stop_reading(conn);
return 0;
}