diff options
author | June McEnroe <june@causal.agency> | 2022-10-18 19:44:18 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-10-18 19:44:30 +0000 |
commit | f20e86819bd454e6738bfddc91fe77e985c80398 (patch) | |
tree | 95d40b5664091f09d1894b2597d7c69125436b98 /www | |
parent | Reread Small Angry Planet (diff) | |
download | src-f20e86819bd454e6738bfddc91fe77e985c80398.tar.gz src-f20e86819bd454e6738bfddc91fe77e985c80398.zip |
Fix email filter once more
Diffstat (limited to 'www')
-rw-r--r-- | www/git.causal.agency/filter.c | 4 |
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); } |