summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2005-03-17 21:40:54 +0000
committerSebastien Helleu <flashcode@flashtux.org>2005-03-17 21:40:54 +0000
commit6d1d1a7b90232a075fe1d03c5f57673748994308 (patch)
tree29c8f15d4f58d2adb478227175a753a3e187be5a
parent0b78294f1a745484d1756d3f0757127587b2be8b (diff)
downloadweechat-6d1d1a7b90232a075fe1d03c5f57673748994308.zip
Fixed display bug when halfop flag is set/unset
-rw-r--r--src/irc/irc-recv.c2
-rw-r--r--weechat/src/irc/irc-recv.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/irc-recv.c b/src/irc/irc-recv.c
index eb0976a36..5106785c2 100644
--- a/src/irc/irc-recv.c
+++ b/src/irc/irc-recv.c
@@ -401,7 +401,7 @@ void irc_get_channel_modes (t_irc_channel *ptr_channel, char *channel_name,
}
if (nick_host)
irc_display_mode (ptr_channel->buffer,
- channel_name, set_flag, "o", nick_host,
+ channel_name, set_flag, "h", nick_host,
(set_flag == '+') ?
_("gives half channel operator status to") :
_("removes half channel operator status from"),
diff --git a/weechat/src/irc/irc-recv.c b/weechat/src/irc/irc-recv.c
index eb0976a36..5106785c2 100644
--- a/weechat/src/irc/irc-recv.c
+++ b/weechat/src/irc/irc-recv.c
@@ -401,7 +401,7 @@ void irc_get_channel_modes (t_irc_channel *ptr_channel, char *channel_name,
}
if (nick_host)
irc_display_mode (ptr_channel->buffer,
- channel_name, set_flag, "o", nick_host,
+ channel_name, set_flag, "h", nick_host,
(set_flag == '+') ?
_("gives half channel operator status to") :
_("removes half channel operator status from"),