From: Nick Mathewson Date: Fri, 29 Apr 2011 15:14:53 +0000 (-0400) Subject: Clean up a warning a bit X-Git-Tag: tor-0.2.3.1-alpha~19^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dbd73b9689e8008adc149472ca5c02692a49923d;p=thirdparty%2Ftor.git Clean up a warning a bit --- diff --git a/src/or/config.c b/src/or/config.c index 867182224f..666a1bdc34 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -3488,10 +3488,9 @@ options_validate(or_options_t *old_options, or_options_t *options, } if (options->CookieAuthFileGroupReadable && !options->CookieAuthFile) { - log_warn(LD_CONFIG, "You set the CookieAuthFileGroupReadable but did " - "not configure a the path for the cookie file via " - "CookieAuthFile. This means your cookie will not be group " - "readable."); + log_warn(LD_CONFIG, "CookieAuthFileGroupReadable is set, but will have " + "no effect: you must specify an explicit CookieAuthFile to " + "have it group-readable."); } if (options->UseEntryGuards && ! options->NumEntryGuards)