summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-09-18 21:47:26 -0400
committerJune McEnroe <june@causal.agency>2022-09-19 01:50:26 +0000
commit4470f9ba9a3413933e7efef6435e34db4b23b760 (patch)
tree8ff2f99947e422ae27e7a6ed3277f86bdffdf21b
parentAdd gdbinit, hushlogin, inputrc (diff)
downloadsrc-4470f9ba9a3413933e7efef6435e34db4b23b760.tar.gz
src-4470f9ba9a3413933e7efef6435e34db4b23b760.zip
Do more "email" filtering
-rw-r--r--www/git.causal.agency/filter.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/www/git.causal.agency/filter.c b/www/git.causal.agency/filter.c
index 9ed9ee17..13384cff 100644
--- a/www/git.causal.agency/filter.c
+++ b/www/git.causal.agency/filter.c
@@ -32,12 +32,8 @@ static int email(void) {
 	size_t cap = 0;
 	char *buf = NULL;
 	if (getline(&buf, &cap, stdin) < 0) err(1, "getline");
-	long x = 1;
-	for (char *ch = buf; *ch && *ch != ' '; ++ch) {
-		x *= *ch;
-	}
-	if (buf[0] == 'C' && x == 1251729952200L) {
-		printf("C.%s", buf + strcspn(buf, " "));
+	if (buf[0] == 'C' && !strcmp(&buf[strcspn(buf, " ")], " McEnroe")) {
+		printf("June McEnroe");
 	} else {
 		printf("%s", buf);
 	}
@@ -143,6 +139,7 @@ static int source(int argc, char *argv[]) {
 }
 
 int main(int argc, char *argv[]) {
+#ifdef __OpenBSD__
 	int error;
 	switch (getprogname()[0]) {
 		break; case 'a': error = pledge("stdio exec", NULL);
@@ -150,6 +147,7 @@ int main(int argc, char *argv[]) {
 		break; default:  error = pledge("stdio", NULL);
 	}
 	if (error) err(1, "pledge");
+#endif
 	switch (getprogname()[0]) {
 		case 'a': return about(argc, argv);
 		case 'e': return email();