diff options
author | June McEnroe <june@causal.agency> | 2018-11-30 17:17:34 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-11-30 17:17:34 -0500 |
commit | 3d9906b00fee2f7a8b69d0e6a1683e306e31b4e6 (patch) | |
tree | 5fd0d6d209ad2916e4b0b4d5b0a029c171f70286 /log.c | |
parent | Reformat sandman Objective-C code (diff) | |
download | catgirl-3d9906b00fee2f7a8b69d0e6a1683e306e31b4e6.tar.gz catgirl-3d9906b00fee2f7a8b69d0e6a1683e306e31b4e6.zip |
Measure length of log timestamp more consistently
Diffstat (limited to 'log.c')
-rw-r--r-- | log.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/log.c b/log.c index 150b629..0b7e386 100644 --- a/log.c +++ b/log.c @@ -91,7 +91,7 @@ static FILE *logFile(struct Tag tag, const struct tm *time) { return log->file; } -enum { StampSize = sizeof("YYYY-MM-DDThh:mm:ss+hhmm") }; +enum { StampLen = sizeof("YYYY-MM-DDThh:mm:ss+hhmm") - 1 }; void logFmt(struct Tag tag, const time_t *ts, const char *format, ...) { if (logRoot < 0) return; @@ -107,8 +107,8 @@ void logFmt(struct Tag tag, const time_t *ts, const char *format, ...) { FILE *file = logFile(tag, time); - char stamp[StampSize]; - strftime(stamp, StampSize, "%FT%T%z", time); + char stamp[StampLen + 1]; + strftime(stamp, sizeof(stamp), "%FT%T%z", time); fprintf(file, "[%s] ", stamp); if (ferror(file)) err(EX_IOERR, "%s", tag.name); @@ -136,7 +136,7 @@ void logReplay(struct Tag tag) { char *line; while (NULL != (line = fgetln(file, &len))) { line[len - 1] = '\0'; - if (len > 2 + StampSize) line = &line[2 + StampSize]; + if (len > 1 + StampLen + 2) line = &line[1 + StampLen + 2]; uiFmt(tag, UICold, "\3%d%s", IRCGray, line); } if (ferror(file)) err(EX_IOERR, "%s", tag.name); |