diff options
author | Roger Dingledine <arma@torproject.org> | 2003-10-07 16:30:05 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-10-07 16:30:05 +0000 |
commit | de6cbe53c0caaf09e6e870b50463fa3ad37dfd6f (patch) | |
tree | 0a67bb89726ce6020cac92b9edf7963180373359 /src/or/connection.c | |
parent | e826873ac657782fde5e635d75de5443ac27fed4 (diff) | |
download | tor-de6cbe53c0caaf09e6e870b50463fa3ad37dfd6f.tar tor-de6cbe53c0caaf09e6e870b50463fa3ad37dfd6f.tar.gz |
some early bugfixes
our log() conflicts with log(3)
distribute only the correct files from doc/ and src/config/
sometimes laptops go back in time. i guess that's ok for now.
and bump the version number because we're live.
svn:r544
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index bc9064920..b893a5186 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -351,8 +351,6 @@ int connection_read_to_buf(connection_t *conn) { at_most = 10*(CELL_PAYLOAD_SIZE - RELAY_HEADER_SIZE); } - at_most = 103; /* an unusual number, to force bugs into the open */ - if(at_most > global_read_bucket) at_most = global_read_bucket; } |