diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-06-18 08:27:45 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-06-18 08:34:37 +0200 |
commit | 4ef6f6ec2dd004a9bb594c185c4c91664665559f (patch) | |
tree | 08586b57ccdfecfa27a9436056a66ece99f93be7 /kike.c | |
parent | 87a44fb8070da327e777c8dfbfdbd7fcaa34d416 (diff) | |
download | xK-4ef6f6ec2dd004a9bb594c185c4c91664665559f.tar.gz xK-4ef6f6ec2dd004a9bb594c185c4c91664665559f.tar.xz xK-4ef6f6ec2dd004a9bb594c185c4c91664665559f.zip |
kike: fix changing channel modes
Diffstat (limited to 'kike.c')
-rw-r--r-- | kike.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1780,7 +1780,7 @@ static bool mode_processor_do_chan (struct mode_processor *self, int mode) { if (!mode_processor_check_operator (self) - || irc_modify_mode (&self->channel->modes, mode, self->adding)) + || !irc_modify_mode (&self->channel->modes, mode, self->adding)) return false; str_append_c (self->output, self->mode_char); |