소스 검색

give a hint when people are running tor as the wrong user, rather than
telling them to start chowning random directories.


svn:r5500

Roger Dingledine 20 년 전
부모
커밋
8b0f1f029c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/common/util.c

+ 1 - 1
src/common/util.c

@@ -912,7 +912,7 @@ check_private_dir(const char *dirname, cpd_check_t check)
   }
 #ifndef MS_WINDOWS
   if (st.st_uid != getuid()) {
-    log(LOG_WARN, LD_FS, "%s is not owned by this UID (%d). You must fix this to proceed.", dirname, (int)getuid());
+    log(LOG_WARN, LD_FS, "%s is not owned by this UID (%d). Perhaps you are running Tor as the wrong user?", dirname, (int)getuid());
     return -1;
   }
   if (st.st_mode & 0077) {