소스 검색

Use localtime for logfile calculations.

Otherwise, I'll see logs for the next day (after 8PM),
which will be unexpected.
root 4 년 전
부모
커밋
4f1a21fc19
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hharry.cpp

+ 1 - 1
hharry.cpp

@@ -385,7 +385,7 @@ int main(int argc, char *argv[]) {
 
     time_t now = time(NULL);
     struct tm *tmp;
-    tmp = gmtime(&now);
+    tmp = localtime(&now);
     // tmp->tm_mon
 
     buffer << "horrible-harry-" << tmp->tm_year + 1900 << "-"