From: Roger Dingledine Date: Fri, 31 Dec 2004 21:49:20 +0000 (+0000) Subject: ...but only if you're a server X-Git-Tag: debian-version-0.0.9.2-1~35 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e29d7329b30e932245ca19e1397fbd7b9abf0a3d;p=thirdparty%2Ftor.git ...but only if you're a server svn:r3233 --- diff --git a/src/or/config.c b/src/or/config.c index 9fbd357b3a..7d81ad4f97 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -1367,8 +1367,9 @@ options_validate(or_options_t *options) log(LOG_WARN,"BandwidthBurst must be less than %d",INT_MAX); result = -1; } - if (options->BandwidthRate < ROUTER_REQUIRED_MIN_BANDWIDTH) { - log(LOG_WARN,"BandwidthRate is set to %d bytes/second. It must be at least %d.", (int)options->BandwidthRate, ROUTER_REQUIRED_MIN_BANDWIDTH); + if (server_mode(options) && + options->BandwidthRate < ROUTER_REQUIRED_MIN_BANDWIDTH) { + log(LOG_WARN,"BandwidthRate is set to %d bytes/second. For servers, it must be at least %d.", (int)options->BandwidthRate, ROUTER_REQUIRED_MIN_BANDWIDTH); result = -1; }