about summary refs log tree commit diff
path: root/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'log.c')
-rw-r--r--log.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/log.c b/log.c
index 9cd6557..150b629 100644
--- a/log.c
+++ b/log.c
@@ -91,6 +91,8 @@ static FILE *logFile(struct Tag tag, const struct tm *time) {
 	return log->file;
 }
 
+enum { StampSize = sizeof("YYYY-MM-DDThh:mm:ss+hhmm") };
+
 void logFmt(struct Tag tag, const time_t *ts, const char *format, ...) {
 	if (logRoot < 0) return;
 
@@ -105,8 +107,8 @@ void logFmt(struct Tag tag, const time_t *ts, const char *format, ...) {
 
 	FILE *file = logFile(tag, time);
 
-	char stamp[sizeof("YYYY-MM-DDThh:mm:ss+hhmm")];
-	strftime(stamp, sizeof(stamp), "%FT%T%z", time);
+	char stamp[StampSize];
+	strftime(stamp, StampSize, "%FT%T%z", time);
 	fprintf(file, "[%s] ", stamp);
 	if (ferror(file)) err(EX_IOERR, "%s", tag.name);
 
@@ -133,7 +135,9 @@ void logReplay(struct Tag tag) {
 	size_t len;
 	char *line;
 	while (NULL != (line = fgetln(file, &len))) {
-		uiFmt(tag, UICold, "\3%d%.*s", IRCGray, (int)(len - 1), line);
+		line[len - 1] = '\0';
+		if (len > 2 + StampSize) line = &line[2 + StampSize];
+		uiFmt(tag, UICold, "\3%d%s", IRCGray, line);
 	}
 	if (ferror(file)) err(EX_IOERR, "%s", tag.name);
 }
commit/bin/order.y?id=b7a1eb26779ad717e62901cf96e049e508b5640b&follow=1'>Declare vasprintf(3) for GNUJune McEnroe who the fuck is scraeming "#define _GNU_SOURCE" at my house. show yourself, coward. i will never #define _GNU_SOURCE 2019-05-20Fix comparison warning in ttpreJune McEnroe 2019-05-20Add AuthorityJune McEnroe 2019-05-19Specify precedence of unary versions of operatorsJune McEnroe 2019-05-18Add compound assignment operators to orderJune McEnroe 2019-05-15Support simple assignment in orderJune McEnroe 2019-05-15Implement sizeof in orderJune McEnroe 2019-05-15Add orderJune McEnroe 2019-05-12Add T suffix in bitJune McEnroe 2019-05-10Highlight yacc and lex files as CJune McEnroe Their %-prefixed directives should probably be highlighted Macro. 2019-05-10Use val instead of suboptargJune McEnroe suboptarg doesn't exist in GNU. Hopefully BSD getsubopt also sets val on failure? 2019-05-09Add Parable of the SowerJune McEnroe 2019-05-07Add bit without buildJune McEnroe Need to do some stuff in the Makefile for lex and yacc and generating HTML pages for it. 2019-05-04Fix MANDIR typoJune McEnroe 2019-05-04Move relay to binJune McEnroe