summaryrefslogtreecommitdiff
path: root/src/irc
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc')
-rw-r--r--src/irc/irc-display.c3
-rw-r--r--src/irc/irc-recv.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/irc/irc-display.c b/src/irc/irc-display.c
index 6bcd216b8..ec5f135b0 100644
--- a/src/irc/irc-display.c
+++ b/src/irc/irc-display.c
@@ -45,7 +45,8 @@ irc_display_prefix (t_gui_buffer *buffer, char *prefix)
{
int type;
- type = MSG_TYPE_INFO;
+ type = MSG_TYPE_INFO | MSG_TYPE_PREFIX;
+
if (!cfg_log_plugin_msg && (prefix == PREFIX_PLUGIN))
type |= MSG_TYPE_NOLOG;
diff --git a/src/irc/irc-recv.c b/src/irc/irc-recv.c
index 8f917d30c..6b34d4cd2 100644
--- a/src/irc/irc-recv.c
+++ b/src/irc/irc-recv.c
@@ -2973,7 +2973,7 @@ irc_cmd_recv_366 (t_irc_server *server, char *host, char *arguments)
for (ptr_nick = ptr_channel->nicks; ptr_nick; ptr_nick = ptr_nick->next_nick)
{
irc_display_nick (ptr_channel->buffer, ptr_nick,
- MSG_TYPE_INFO, 0, 0, 1);
+ MSG_TYPE_MSG, 0, 0, 1);
if (ptr_nick != ptr_channel->last_nick)
gui_printf (ptr_channel->buffer, " ");
}