]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Clean up a warning a bit
authorNick Mathewson <nickm@torproject.org>
Fri, 29 Apr 2011 15:14:53 +0000 (11:14 -0400)
committerNick Mathewson <nickm@torproject.org>
Fri, 29 Apr 2011 15:14:53 +0000 (11:14 -0400)
src/or/config.c

index 867182224f24349c4d6f8067e4d0377283c13a17..666a1bdc34ba6a5e60e20d2ae484cb9529f3bda3 100644 (file)
@@ -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)