diff options
author | Berke Viktor <berkeviktor@aol.com> | 2012-01-11 20:31:11 +0100 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2012-01-11 20:31:11 +0100 |
commit | 6eb1fcbbe7438812620ce40f4c2c1a82e2820a1c (patch) | |
tree | 5b9ff26003c92a94c26772178b1d87d6f0b40736 /plugins/xsasl/xsasl.c | |
parent | 9eae6db37feb2a66bf44d351e805e451d309f42a (diff) |
remove extra spaces from xsasl messages
Diffstat (limited to 'plugins/xsasl/xsasl.c')
-rw-r--r-- | plugins/xsasl/xsasl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/xsasl/xsasl.c b/plugins/xsasl/xsasl.c index e6840ad1..e6d6312f 100644 --- a/plugins/xsasl/xsasl.c +++ b/plugins/xsasl/xsasl.c @@ -104,7 +104,7 @@ authend_cb (char *word[], char *word_eol[], void *userdata) { 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"); } @@ -164,7 +164,7 @@ cap_cb (char *word[], char *word_eol[], void *userdata) if (get_info ()) { /* 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"); } |