about summary refs log tree commit diff
path: root/command.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-09-18 18:26:13 -0400
committerJune McEnroe <june@causal.agency>2020-09-18 18:26:13 -0400
commitdce6c11cf683cad51bc602b682e84c366c60c689 (patch)
treef84edd55bafcd4791b988fed2ceaf1016b70768e /command.c
parentSwitch back to checking for server by nick with '.' (diff)
downloadcatgirl-dce6c11cf683cad51bc602b682e84c366c60c689.tar.gz
catgirl-dce6c11cf683cad51bc602b682e84c366c60c689.zip
Allow 2-param form of /whois, count comma-separated nicks
I do not feel like documenting the 2-param form of /whois because it is
weird, but it should work for those who already know about it.
Diffstat (limited to 'command.c')
-rw-r--r--command.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/command.c b/command.c
index 4c51433..0d988cd 100644
--- a/command.c
+++ b/command.c
@@ -296,8 +296,12 @@ static void commandList(uint id, char *params) {
 static void commandWhois(uint id, char *params) {
 	(void)id;
 	if (!params) return;
-	ircFormat("WHOIS :%s\r\n", params);
-	replies.whois++;
+	uint count = 1;
+	for (char *ch = params; *ch; ++ch) {
+		if (*ch == ',') count++;
+	}
+	ircFormat("WHOIS %s\r\n", params);
+	replies.whois += count;
 }
 
 static void commandNS(uint id, char *params) {