summary refs log tree commit diff
path: root/www
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 /www
parentReread Small Angry Planet (diff)
downloadsrc-b84bbc2c1a55d313505a59bfc5bea0689817d39c.tar.gz
src-b84bbc2c1a55d313505a59bfc5bea0689817d39c.zip
Fix email filter once more
Diffstat (limited to '')
-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);
 	}
-highlight'> 2021-04-18build: Remove added x509_verify.3 links 3.3.2June McEnroe 2021-04-18tls: Use EC_KEY_set_ex_dataJune McEnroe 2021-04-18Import LibreSSL 3.3.2June McEnroe 2021-03-05Bump version to 3.3.1p1 3.3.1p1June McEnroe 2021-03-05build: Add OpenSSL includes to libcompatJune McEnroe Some compat sources (getentropy_linux.c for example) require OpenSSL. Reported by Robert Scheck. 2020-12-15Import LibreSSL 3.3.1June McEnroe 2020-11-24Import LibreSSL 3.3.0June McEnroe 2020-10-22Import LibreSSL 3.2.2June McEnroe 2020-09-29Import LibreSSL 3.2.1June McEnroe 2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe 2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe 2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroe