From 07686bf69bce9eeddd279a3cbc485b484655aa84 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Sun, 23 Jan 2005 17:59:18 +0000 Subject: [PATCH] Min value for "irc_lag_min_show" is now 0 --- src/common/weeconfig.c | 2 +- weechat/src/common/weeconfig.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/weeconfig.c b/src/common/weeconfig.c index df1aa67e6..41ec615bb 100644 --- a/src/common/weeconfig.c +++ b/src/common/weeconfig.c @@ -487,7 +487,7 @@ t_config_option weechat_options_irc[] = NULL, NULL, &cfg_irc_lag_check, NULL, config_change_noop }, { "irc_lag_min_show", N_("minimum lag to show"), N_("minimum lag to show (in seconds)"), - OPTION_TYPE_INT, 1, INT_MAX, 1, + OPTION_TYPE_INT, 0, INT_MAX, 1, NULL, NULL, &cfg_irc_lag_min_show, NULL, config_change_noop }, { "irc_lag_disconnect", N_("disconnect after important lag"), N_("disconnect after important lag (in minutes, 0 = never disconnect)"), diff --git a/weechat/src/common/weeconfig.c b/weechat/src/common/weeconfig.c index df1aa67e6..41ec615bb 100644 --- a/weechat/src/common/weeconfig.c +++ b/weechat/src/common/weeconfig.c @@ -487,7 +487,7 @@ t_config_option weechat_options_irc[] = NULL, NULL, &cfg_irc_lag_check, NULL, config_change_noop }, { "irc_lag_min_show", N_("minimum lag to show"), N_("minimum lag to show (in seconds)"), - OPTION_TYPE_INT, 1, INT_MAX, 1, + OPTION_TYPE_INT, 0, INT_MAX, 1, NULL, NULL, &cfg_irc_lag_min_show, NULL, config_change_noop }, { "irc_lag_disconnect", N_("disconnect after important lag"), N_("disconnect after important lag (in minutes, 0 = never disconnect)"),