From 793f564ffd9622e2c879b1ee3591748d602d6118 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 27 Feb 2020 02:36:32 -0500 Subject: Support CAP LS 302 from clients --- state.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'state.c') diff --git a/state.c b/state.c index d840018..71c2763 100644 --- a/state.c +++ b/state.c @@ -51,7 +51,7 @@ void stateLogin( serverFormat("CAP LS\r\n"); if (pass) serverFormat("PASS :%s\r\n", pass); if (sasl) { - serverFormat("CAP REQ :%s\r\n", capList(CapSASL)); + serverFormat("CAP REQ :%s\r\n", capList(CapSASL, NULL)); if (plain) { byte buf[AuthLen]; size_t len = 1 + strlen(plain); @@ -76,7 +76,7 @@ static void handleCap(struct Message *msg) { if (!strcmp(msg->params[1], "LS") || !strcmp(msg->params[1], "NEW")) { caps &= ~(CapSASL | CapUnsupported); - if (caps) serverFormat("CAP REQ :%s\r\n", capList(caps)); + if (caps) serverFormat("CAP REQ :%s\r\n", capList(caps, NULL)); } else if (!strcmp(msg->params[1], "ACK")) { stateCaps |= caps; -- cgit 1.4.1