Measure length of log timestamp more consistently

weechat-hashes
Curtis McEnroe 2018-11-30 17:17:34 -05:00
parent 70386c93f2
commit 3d9906b00f
No known key found for this signature in database
GPG Key ID: CEA2F97ADCFCD77C
1 changed files with 4 additions and 4 deletions

8
log.c
View File

@ -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);