about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-11-16 14:16:43 -0500
committerJune McEnroe <june@causal.agency>2021-11-16 14:16:43 -0500
commitbd3e0ac76b3bf8da1ae785f7af7355748b1f2656 (patch)
tree261f8ea0d5fb269b2e26ce337c60713ab2e22e49
parentHandle RPL_WHOISSPECIAL (diff)
downloadcatgirl-bd3e0ac76b3bf8da1ae785f7af7355748b1f2656.tar.gz
catgirl-bd3e0ac76b3bf8da1ae785f7af7355748b1f2656.zip
Make the /ops response more flavourful
How did this normal sounding format string get in there!
-rw-r--r--handle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/handle.c b/handle.c
index 38fd132..7721745 100644
--- a/handle.c
+++ b/handle.c
@@ -571,7 +571,7 @@ static void handleReplyWho(struct Message *msg) {
 	require(msg, false, 7);
 	if (who.ptr == who.buf) {
 		who.ptr = seprintf(
-			who.ptr, who.end, "The operators of \3%02d%s\3 are ",
+			who.ptr, who.end, "The council of \3%02d%s\3 are ",
 			hash(msg->params[1]), msg->params[1]
 		);
 	}