summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-11-29 18:52:03 -0500
committerJune McEnroe <june@causal.agency>2018-11-29 18:52:03 -0500
commit908b834c1a6346b8bde7168e42d1b9786e4f658f (patch)
tree9942f43260e8e64077a7a02231938362ae0d2056
parentAdd basic log replay (diff)
downloadcatgirl-908b834c1a6346b8bde7168e42d1b9786e4f658f.tar.gz
catgirl-908b834c1a6346b8bde7168e42d1b9786e4f658f.zip
Strip timestamps from log replay
Also fix string length. %.*s does not behave as one might expect when
writing wchar_t.
Diffstat (limited to '')
-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);
 }
018-08-18 16:24:25 -0400'>2018-08-18Run tf/cfg link script with /bin/shJune McEnroe 2018-08-18Run {,s,t}up with /bin/shJune McEnroe 2018-08-18Use whence instead of typeJune McEnroe type is an alias for whence -v and is more for human consumption. 2018-08-18Cut off path components until right prompt fitsJune McEnroe Keeps paths valid (from somehwere) rather than abrupt truncation. 2018-08-17Add "private" alias to source encrypted fileJune McEnroe Why is there no easy way to *edit* an encrypted file? 2018-08-17Add vim mapping to add a #includeJune McEnroe