Bypass the identify-msg patch as well, breaks SASL
This commit is contained in:
parent
842e74dce8
commit
0003b85ccb
|
@ -49,7 +49,9 @@ irc_login (server *serv, char *user, char *realname)
|
||||||
{
|
{
|
||||||
if (serv->password[0])
|
if (serv->password[0])
|
||||||
tcp_sendf (serv, "PASS %s\r\n", serv->password);
|
tcp_sendf (serv, "PASS %s\r\n", serv->password);
|
||||||
|
#if 0 /* breaks the SASL plugin */
|
||||||
tcp_sendf (serv, "CAP LS\r\n");
|
tcp_sendf (serv, "CAP LS\r\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
tcp_sendf (serv,
|
tcp_sendf (serv,
|
||||||
"NICK %s\r\n"
|
"NICK %s\r\n"
|
||||||
|
@ -1115,6 +1117,7 @@ process_named_msg (session *sess, char *type, char *word[], char *word_eol[])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0 /* breaks the SASL plugin */
|
||||||
else if (len == 3)
|
else if (len == 3)
|
||||||
{
|
{
|
||||||
guint32 t;
|
guint32 t;
|
||||||
|
@ -1149,6 +1152,7 @@ process_named_msg (session *sess, char *type, char *word[], char *word_eol[])
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
garbage:
|
garbage:
|
||||||
/* unknown message */
|
/* unknown message */
|
||||||
|
|
Loading…
Reference in New Issue