mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
Sometimes netsplit messages didn't get printed at all (those that came
after 3 seconds after split started) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@875 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
70bb51db19
commit
49b7992b00
@ -251,8 +251,7 @@ static int sig_check_splits(void)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sig_netsplit_servers(IRC_SERVER_REC *server,
|
static void sig_netsplit_servers(void)
|
||||||
NETSPLIT_SERVER_REC *rec)
|
|
||||||
{
|
{
|
||||||
if (settings_get_bool("hide_netsplit_quits") && split_tag == -1) {
|
if (settings_get_bool("hide_netsplit_quits") && split_tag == -1) {
|
||||||
split_tag = g_timeout_add(1000,
|
split_tag = g_timeout_add(1000,
|
||||||
@ -302,7 +301,7 @@ void fe_netsplit_init(void)
|
|||||||
split_tag = -1;
|
split_tag = -1;
|
||||||
|
|
||||||
read_settings();
|
read_settings();
|
||||||
signal_add("netsplit server new", (SIGNAL_FUNC) sig_netsplit_servers);
|
signal_add("netsplit add", (SIGNAL_FUNC) sig_netsplit_servers);
|
||||||
signal_add("setup changed", (SIGNAL_FUNC) read_settings);
|
signal_add("setup changed", (SIGNAL_FUNC) read_settings);
|
||||||
command_bind("netsplit", NULL, (SIGNAL_FUNC) cmd_netsplit);
|
command_bind("netsplit", NULL, (SIGNAL_FUNC) cmd_netsplit);
|
||||||
}
|
}
|
||||||
@ -311,7 +310,7 @@ void fe_netsplit_deinit(void)
|
|||||||
{
|
{
|
||||||
if (split_tag != -1) g_source_remove(split_tag);
|
if (split_tag != -1) g_source_remove(split_tag);
|
||||||
|
|
||||||
signal_remove("netsplit server new", (SIGNAL_FUNC) sig_netsplit_servers);
|
signal_remove("netsplit add", (SIGNAL_FUNC) sig_netsplit_servers);
|
||||||
signal_remove("setup changed", (SIGNAL_FUNC) read_settings);
|
signal_remove("setup changed", (SIGNAL_FUNC) read_settings);
|
||||||
command_unbind("netsplit", (SIGNAL_FUNC) cmd_netsplit);
|
command_unbind("netsplit", (SIGNAL_FUNC) cmd_netsplit);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user