mirror of
https://github.com/monero-project/monero.git
synced 2024-11-17 08:17:37 +00:00
Merge pull request #1670
c3d7a198
mlog: probable fix for gmtime_r not being available on windows (moneromooo-monero)
This commit is contained in:
commit
9547e79af5
1 changed files with 6 additions and 1 deletions
|
@ -43,7 +43,12 @@ static std::string generate_log_filename(const char *base)
|
||||||
char tmp[200];
|
char tmp[200];
|
||||||
struct tm tm;
|
struct tm tm;
|
||||||
time_t now = time(NULL);
|
time_t now = time(NULL);
|
||||||
if (!gmtime_r(&now, &tm))
|
if
|
||||||
|
#ifdef WIN32
|
||||||
|
(!gmtime_s(&tm, &now))
|
||||||
|
#else
|
||||||
|
(!gmtime_r(&now, &tm))
|
||||||
|
#endif
|
||||||
strcpy(tmp, "unknown");
|
strcpy(tmp, "unknown");
|
||||||
else
|
else
|
||||||
strftime(tmp, sizeof(tmp), "%Y-%m-%d-%H-%M-%S", &tm);
|
strftime(tmp, sizeof(tmp), "%Y-%m-%d-%H-%M-%S", &tm);
|
||||||
|
|
Loading…
Reference in a new issue