diff options
author | Roger Dingledine <arma@torproject.org> | 2007-02-07 02:55:34 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-02-07 02:55:34 +0000 |
commit | 690c9cc887b0e25a76f7e9155487d05a3c9ca9bb (patch) | |
tree | bfa9ca84a8b48c51a57d41d9d6f36efd1a14a64c /src/or/router.c | |
parent | 534baec4a1d9214eade9213704690d2308bfe847 (diff) | |
download | tor-690c9cc887b0e25a76f7e9155487d05a3c9ca9bb.tar.gz tor-690c9cc887b0e25a76f7e9155487d05a3c9ca9bb.zip |
make a log message make more sense
svn:r9504
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index 8b5905b4e8..a86ca5db3a 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -447,7 +447,7 @@ decide_to_advertise_dirport(or_options_t *options, routerinfo_t *router) /* if we might potentially hibernate */ new_choice = 0; reason = "AccountingMax enabled"; - } else if (router->bandwidthrate <= 51200) { + } else if (router->bandwidthrate < 51200) { /* if we're advertising a small amount */ new_choice = 0; reason = "BandwidthRate under 50KB"; |