aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-04-29 11:14:53 -0400
committerNick Mathewson <nickm@torproject.org>2011-04-29 11:14:53 -0400
commitdbd73b9689e8008adc149472ca5c02692a49923d (patch)
treee0c25fae1987d2e233d7b36cd650b4fa7b15d433
parent93b0183d3cae436732b48d36aa9b54964854a0a4 (diff)
downloadtor-dbd73b9689e8008adc149472ca5c02692a49923d.tar
tor-dbd73b9689e8008adc149472ca5c02692a49923d.tar.gz
Clean up a warning a bit
-rw-r--r--src/or/config.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/or/config.c b/src/or/config.c
index 867182224..666a1bdc3 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)