log: add some more comments

This commit is contained in:
Koichiro IWAO 2022-10-11 09:49:00 +09:00
parent db96239982
commit 662011a757
1 changed files with 3 additions and 3 deletions

View File

@ -1146,9 +1146,9 @@ getLogFile(char *replybuf, int bufsize)
char *
getFormattedDateTime(char *replybuf, int bufsize)
{
char buf_datetime[21];
char buf_millisec[4];
char buf_timezone[6];
char buf_datetime[21]; /* 2022-10-07T16:36:04 + . */
char buf_millisec[4]; /* 357 */
char buf_timezone[6]; /* +0900 */
struct tm *now;
struct timeval tv;