about summary refs log tree commit diff
path: root/command.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-10 20:17:21 -0500
committerJune McEnroe <june@causal.agency>2020-02-10 20:17:21 -0500
commit00f0f94fc80ebecff531388e38d0fb121e3f4e74 (patch)
treeebb41836719f2bea73f69d05211b6d62021a3ab2 /command.c
parentSynthesize a QUIT message to handle on exit (diff)
downloadcatgirl-00f0f94fc80ebecff531388e38d0fb121e3f4e74.tar.gz
catgirl-00f0f94fc80ebecff531388e38d0fb121e3f4e74.zip
Delegate to commandPrivmsg from commandMsg
Diffstat (limited to 'command.c')
-rw-r--r--command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/command.c b/command.c
index 3e201cc..cab1d26 100644
--- a/command.c
+++ b/command.c
@@ -75,7 +75,7 @@ static void commandMsg(size_t id, char *params) {
 	(void)id;
 	char *nick = strsep(&params, " ");
 	if (!params) return;
-	ircFormat("PRIVMSG %s :%s\r\n", nick, params);
+	commandPrivmsg(idFor(nick), params);
 }
 
 static void commandJoin(size_t id, char *params) {