From b84bbc2c1a55d313505a59bfc5bea0689817d39c Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 18 Oct 2022 19:44:18 +0000 Subject: Fix email filter once more --- www/git.causal.agency/filter.c | 4 ++-- 1 file 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); } -- cgit 1.4.1