fixed the default time format in the log output

This commit is contained in:
hyunghwan.chung 2018-03-31 07:14:15 +00:00
parent 09ccec105b
commit 21e8fae43d

View File

@ -701,7 +701,7 @@ static void log_write (moo_t* moo, unsigned int mask, const moo_ooch_t* msg, moo
if (tslen == 0)
{
strcpy (ts, "0000-00-00 00:00:00 ");
tslen = 19;
tslen = 20;
}
#else
tmp = localtime_r (&now, &tm);
@ -713,7 +713,7 @@ static void log_write (moo_t* moo, unsigned int mask, const moo_ooch_t* msg, moo
if (tslen == 0)
{
strcpy (ts, "0000-00-00 00:00:00 +0000 ");
tslen = 25;
tslen = 26;
}
#endif
write_log (moo, logfd, ts, tslen);