Update src/common/inbound.c

This commit is contained in:
Patrick 2022-05-13 15:50:14 -05:00 committed by GitHub
parent 99417ef73b
commit 02a96c8802
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1931,7 +1931,7 @@ inbound_sasl_authenticate (server *serv, char *data)
/* long SASL passwords must be split into 400-byte chunks
https://ircv3.net/specs/extensions/sasl-3.1#the-authenticate-command */
size_t pass_len = strlen(pass);
size_t pass_len = strlen (pass);
if (pass_len <= 400)
tcp_sendf (serv, "AUTHENTICATE %s\r\n", pass);
else