diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-02-22 16:33:02 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-02-22 16:33:02 +0100 |
commit | a08679c887b5ec542d2da39ade1fbc1c806c732b (patch) | |
tree | 09eef4bc458fa48e2d7425c6d94636dc6c5064b5 /src/plugins/irc/irc-config.c | |
parent | a0651e11bd34a45d2a6f6db49fe0448ab154e548 (diff) | |
download | weechat-a08679c887b5ec542d2da39ade1fbc1c806c732b.zip |
irc: set option irc.network.autoreconnect_delay_max to 600 by default, increase max value to 604800 seconds (7 days)
Diffstat (limited to 'src/plugins/irc/irc-config.c')
-rw-r--r-- | src/plugins/irc/irc-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-config.c b/src/plugins/irc/irc-config.c index eceadac19..e965b96ca 100644 --- a/src/plugins/irc/irc-config.c +++ b/src/plugins/irc/irc-config.c @@ -2758,7 +2758,7 @@ irc_config_init () irc_config_file, ptr_section, "autoreconnect_delay_max", "integer", N_("maximum autoreconnect delay to server (in seconds, 0 = no maximum)"), - NULL, 0, 3600 * 24, "1800", NULL, 0, NULL, NULL, + NULL, 0, 3600 * 24 * 7, "600", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL); irc_config_network_ban_mask_default = weechat_config_new_option ( irc_config_file, ptr_section, |