summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-10-18 19:44:18 +0000
committerJune McEnroe <june@causal.agency>2022-10-18 19:44:30 +0000
commitb84bbc2c1a55d313505a59bfc5bea0689817d39c (patch)
tree95d40b5664091f09d1894b2597d7c69125436b98
parentReread Small Angry Planet (diff)
downloadsrc-b84bbc2c1a55d313505a59bfc5bea0689817d39c.tar.gz
src-b84bbc2c1a55d313505a59bfc5bea0689817d39c.zip
Fix email filter once more
-rw-r--r--www/git.causal.agency/filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/git.causal.agency/filter.c b/www/git.causal.agency/filter.c
index 13384cff..7c7e9320 100644
--- a/www/git.causal.agency/filter.c
+++ b/www/git.causal.agency/filter.c
@@ -32,8 +32,8 @@ static int email(void) {
 	size_t cap = 0;
 	char *buf = NULL;
 	if (getline(&buf, &cap, stdin) < 0) err(1, "getline");
-	if (buf[0] == 'C' && !strcmp(&buf[strcspn(buf, " ")], " McEnroe")) {
-		printf("June McEnroe");
+	if (buf[0] == 'C' && !strncmp(&buf[strcspn(buf, " ")], " McEnroe", 8)) {
+		printf("June%s", &buf[strcspn(buf, " ")]);
 	} else {
 		printf("%s", buf);
 	}