Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/xrdp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKoichiro IWAO <meta@vmeta.jp>2022-10-11 03:49:00 +0300
committerKoichiro IWAO <meta@vmeta.jp>2022-10-11 03:56:40 +0300
commit662011a757e97624c6c8b1d18e090213a29e8d87 (patch)
tree872a8dd66ca7d0afeb19b6f6351e5c9ad3926b10
parentdb962399821d833aaf5c4bc46fca88e8112766e4 (diff)
log: add some more comments
-rw-r--r--common/log.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/log.c b/common/log.c
index 5c0a0ec7..5ac7f3d3 100644
--- a/common/log.c
+++ b/common/log.c
@@ -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;