Browse Source

Use localtime for logfile calculations.

Otherwise, I'll see logs for the next day (after 8PM),
which will be unexpected.
root 4 years ago
parent
commit
4f1a21fc19
1 changed files with 1 additions and 1 deletions
  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 << "-"