From 7574bed26c98069945b3fbc3938819c10e65b045 Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Wed, 23 Nov 2016 16:11:38 +0100 Subject: Minor corrections to the netsplit code. --- src/fe-common/irc/fe-netsplit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/fe-common/irc/fe-netsplit.c') diff --git a/src/fe-common/irc/fe-netsplit.c b/src/fe-common/irc/fe-netsplit.c index aa05639b..b44fa249 100644 --- a/src/fe-common/irc/fe-netsplit.c +++ b/src/fe-common/irc/fe-netsplit.c @@ -249,13 +249,13 @@ static void sig_print_starting(TEXT_DEST_REC *dest) if (printing_splits) return; - if (IS_IRC_SERVER(dest->server) == FALSE) + if (!IS_IRC_SERVER(dest->server)) return; - if (dest->level != MSGLEVEL_PUBLIC) + if (!(dest->level & MSGLEVEL_PUBLIC)) return; - if (server_ischannel(dest->server, dest->target) == FALSE) + if (!server_ischannel(dest->server, dest->target)) return; rec = IRC_SERVER(dest->server); -- cgit v1.2.3 From 5f0e755a00c7cb0e85e167cd455bb3ce16b4d14b Mon Sep 17 00:00:00 2001 From: LemonBoy Date: Wed, 23 Nov 2016 22:22:37 +0100 Subject: Don't shadow the 'channel' variable when printing the netjoins. This is the root cause of #567 --- src/fe-common/irc/fe-netsplit.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/fe-common/irc/fe-netsplit.c') diff --git a/src/fe-common/irc/fe-netsplit.c b/src/fe-common/irc/fe-netsplit.c index b44fa249..17fb1994 100644 --- a/src/fe-common/irc/fe-netsplit.c +++ b/src/fe-common/irc/fe-netsplit.c @@ -142,7 +142,7 @@ static void get_server_splits(void *key, NETSPLIT_REC *split, } } -static void print_server_splits(IRC_SERVER_REC *server, TEMP_SPLIT_REC *rec, const char *channel) +static void print_server_splits(IRC_SERVER_REC *server, TEMP_SPLIT_REC *rec, const char *filter_channel) { GString *destservers; char *sourceserver; @@ -168,7 +168,8 @@ static void print_server_splits(IRC_SERVER_REC *server, TEMP_SPLIT_REC *rec, con for (tmp = rec->channels; tmp != NULL; tmp = tmp->next) { TEMP_SPLIT_CHAN_REC *chan = tmp->data; - if (channel != NULL && strcasecmp(channel, chan->name) != 0) + if (filter_channel != NULL && + strcasecmp(chan->name, filter_channel) != 0) continue; g_string_truncate(chan->nicks, chan->nicks->len-2); -- cgit v1.2.3