Explorar el Código

Use localtime for logfile calculations.

Otherwise, I'll see logs for the next day (after 8PM),
which will be unexpected.
root hace 4 años
padre
commit
4f1a21fc19
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 << "-"