소스 검색

Add '--digests' to "that which implies --hush."

And have these various commandline options imply "hush", not "quiet",
since we like to see warnings.
Nick Mathewson 12 년 전
부모
커밋
a6cad4db70
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/or/main.c

+ 3 - 3
src/or/main.c

@@ -2345,10 +2345,10 @@ tor_init(int argc, char *argv[])
         quiet = 1;
       if (!strcmp(cl->key, "--quiet"))
         quiet = 2;
-      /* --version and --help imply --quiet */
-      if (!strcmp(cl->key, "--version") ||
+      /* --version, --digests, and --help imply --quiet */
+      if (!strcmp(cl->key, "--version") || !strcmp(cl->key, "--digests") ||
           !strcmp(cl->key, "-h") || !strcmp(cl->key, "--help"))
-        quiet = 2;
+        quiet = 1;
     }
     config_free_lines(opts);
     config_free_lines(cmdline_opts);