diff options
author | Patrick Griffis <tingping@tingping.se> | 2016-01-28 22:14:41 -0500 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2016-01-29 15:28:33 -0500 |
commit | 981d55e84c417095c0f686a6e22ba83ef9aa4b4e (patch) | |
tree | 46b024436dc9bdddef2bb5d4b2b3abecda85d2fa /src/common/proto-irc.c | |
parent | 35d238ad3a48b07c0c204b22305f00805c190111 (diff) |
Add support for CAP 3.2
Diffstat (limited to 'src/common/proto-irc.c')
-rw-r--r-- | src/common/proto-irc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c index 6fe601ed..4174e182 100644 --- a/src/common/proto-irc.c +++ b/src/common/proto-irc.c @@ -48,7 +48,7 @@ static void irc_login (server *serv, char *user, char *realname) { - tcp_sendf (serv, "CAP LS\r\n"); /* start with CAP LS as Charybdis sasl.txt suggests */ + tcp_sendf (serv, "CAP LS 302\r\n"); /* start with CAP LS as Charybdis sasl.txt suggests */ serv->sent_capend = FALSE; /* track if we have finished */ if (serv->password[0] && serv->loginmethod == LOGIN_PASS) |