summaryrefslogtreecommitdiff
path: root/src/fe-common/irc/fe-netsplit.c
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-05-27 13:49:29 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-05-27 13:49:29 +0000
commit64e67302eaa590a0f96b304ac58a9ac645cc2340 (patch)
tree04878b3de6bfa462f5126904c2c506a7bfcdaa42 /src/fe-common/irc/fe-netsplit.c
parentb6cadd5388333c9c035d80b4a1511dab26a820af (diff)
downloadirssi-64e67302eaa590a0f96b304ac58a9ac645cc2340.zip
Netsplit messages are now printed with QUITS message level.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@245 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/irc/fe-netsplit.c')
-rw-r--r--src/fe-common/irc/fe-netsplit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-common/irc/fe-netsplit.c b/src/fe-common/irc/fe-netsplit.c
index 954821dc..570751b9 100644
--- a/src/fe-common/irc/fe-netsplit.c
+++ b/src/fe-common/irc/fe-netsplit.c
@@ -110,11 +110,11 @@ static void print_splits(IRC_SERVER_REC *server, TEMP_SPLIT_REC *rec)
g_string_truncate(chan->nicks, chan->nicks->len-1);
if (netsplit_max_nicks > 0 && chan->nick_count > netsplit_max_nicks) {
- printformat(server, chan->name, MSGLEVEL_CLIENTNOTICE, IRCTXT_NETSPLIT_MORE,
+ printformat(server, chan->name, MSGLEVEL_QUITS, IRCTXT_NETSPLIT_MORE,
rec->server->server, rec->server->destserver, chan->nicks->str,
chan->nick_count - netsplit_max_nicks);
} else {
- printformat(server, chan->name, MSGLEVEL_CLIENTNOTICE, IRCTXT_NETSPLIT,
+ printformat(server, chan->name, MSGLEVEL_QUITS, IRCTXT_NETSPLIT,
rec->server->server, rec->server->destserver, chan->nicks->str);
}
}