Revert "change localtime to localtime_r which is a thread-safe function"

This reverts commit 8ca5944111.
This commit is contained in:
shmuels 2021-04-19 13:29:00 +03:00
parent cede620a2a
commit d962399db0

View file

@ -171,13 +171,13 @@ static int
flogtime(FILE *f) flogtime(FILE *f)
{ {
struct timeval tv; struct timeval tv;
struct tm tm; struct tm *tm;
gettimeofday(&tv, NULL); gettimeofday(&tv, NULL);
localtime_r((time_t*)&tv.tv_sec, &tm); tm = localtime((time_t*)&tv.tv_sec);
fprintf(f, "%s %2d %02d:%02d:%02d: ", fprintf(f, "%s %2d %02d:%02d:%02d: ",
mon2name(tm.tm_mon), tm.tm_mday, mon2name(tm->tm_mon), tm->tm_mday,
tm.tm_hour, tm.tm_min, tm.tm_sec); tm->tm_hour, tm->tm_min, tm->tm_sec);
return 0; return 0;
} }