diff options
author | June McEnroe <june@causal.agency> | 2021-11-16 14:16:43 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-11-16 14:16:43 -0500 |
commit | bd3e0ac76b3bf8da1ae785f7af7355748b1f2656 (patch) | |
tree | 261f8ea0d5fb269b2e26ce337c60713ab2e22e49 /handle.c | |
parent | Handle RPL_WHOISSPECIAL (diff) | |
download | catgirl-bd3e0ac76b3bf8da1ae785f7af7355748b1f2656.tar.gz catgirl-bd3e0ac76b3bf8da1ae785f7af7355748b1f2656.zip |
Make the /ops response more flavourful
How did this normal sounding format string get in there!
Diffstat (limited to 'handle.c')
-rw-r--r-- | handle.c | 2 |
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] ); } |