remove extra spaces from xsasl messages
This commit is contained in:
parent
9eae6db37f
commit
6eb1fcbbe7
|
@ -104,7 +104,7 @@ authend_cb (char *word[], char *word_eol[], void *userdata)
|
||||||
{
|
{
|
||||||
if (get_info ())
|
if (get_info ())
|
||||||
{
|
{
|
||||||
xchat_printf (ph, "%s\t %s\n", name, word_eol[1]);
|
xchat_printf (ph, "%s\t%s\n", name, word_eol[1]);
|
||||||
xchat_commandf (ph, "QUOTE CAP END");
|
xchat_commandf (ph, "QUOTE CAP END");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -164,7 +164,7 @@ cap_cb (char *word[], char *word_eol[], void *userdata)
|
||||||
if (get_info ())
|
if (get_info ())
|
||||||
{
|
{
|
||||||
/* FIXME test sasl cap */
|
/* FIXME test sasl cap */
|
||||||
xchat_printf (ph, "%s\t %s\n", name, word_eol[1]);
|
xchat_printf (ph, "%s\t%s\n", name, word_eol[1]);
|
||||||
xchat_commandf (ph, "QUOTE AUTHENTICATE PLAIN");
|
xchat_commandf (ph, "QUOTE AUTHENTICATE PLAIN");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue