From 690c9cc887b0e25a76f7e9155487d05a3c9ca9bb Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Wed, 7 Feb 2007 02:55:34 +0000 Subject: [PATCH] make a log message make more sense svn:r9504 --- src/or/router.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.11.4.GIT