summary refs log tree commit diff
path: root/handle.c
diff options
context:
space:
mode:
Diffstat (limited to 'handle.c')
-rw-r--r--handle.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/handle.c b/handle.c
index 441bbc5..5f29db2 100644
--- a/handle.c
+++ b/handle.c
@@ -67,8 +67,7 @@ static const char *capList(enum Cap caps) {
 	buf[0] = '\0';
 	for (size_t i = 0; i < ARRAY_LEN(CapNames); ++i) {
 		if (caps & (1 << i)) {
-			if (buf[0]) strlcat(buf, " ", sizeof(buf));
-			strlcat(buf, CapNames[i], sizeof(buf));
+			catf(buf, sizeof(buf), "%s%s", (buf[0] ? " " : ""), CapNames[i]);
 		}
 	}
 	return buf;
a href='/src/commit/txt/books.txt?id=013264d92bc84a8a2a133d9b55b6820fcad44806&follow=1'>Add The Girl Who Was Convinced...June McEnroe Not much there. The illustrations are very nice though. 2024-06-09Add photos from May 31June McEnroe 2024-06-09Use monospace on photo pagesJune McEnroe 2024-06-09Put lens and (future) film at the tops of photo pagesJune McEnroe 2024-05-22Remove use of sysexits.hJune McEnroe 2024-05-22Add photo descriptions from 05-03 and 05-06June McEnroe 2024-05-21Fix = precedence in whenJune McEnroe