Merge pull request #527 from grawity/cap-req-sasl

Request 'sasl' even if it's the only recognized cap
This commit is contained in:
TingPing 2013-04-09 17:50:26 -07:00
commit a99111172d
1 changed files with 1 additions and 0 deletions

View File

@ -1264,6 +1264,7 @@ process_named_msg (session *sess, char *type, char *word[], char *word_eol[])
if (strstr (word_eol[5], "sasl") != 0 && strlen (sess->server->saslpassword) != 0)
{
want_cap ? strcat (buffer, " sasl") : strcpy (buffer, "CAP REQ :sasl");
want_cap = 1;
want_sasl = 1;
}