diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-07 12:19:55 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-07 12:19:55 +0000 |
commit | 39d90b2d40282cabd6229e16b3ae13c3eef9617a (patch) | |
tree | 16ef2b0e89c92c2923da00f3aa7f8e306cf0a320 /mdkapplet | |
parent | 522e254e24babc120b9120e98d477bd0e1921000 (diff) | |
download | mgaonline-39d90b2d40282cabd6229e16b3ae13c3eef9617a.tar mgaonline-39d90b2d40282cabd6229e16b3ae13c3eef9617a.tar.gz mgaonline-39d90b2d40282cabd6229e16b3ae13c3eef9617a.tar.bz2 mgaonline-39d90b2d40282cabd6229e16b3ae13c3eef9617a.tar.xz mgaonline-39d90b2d40282cabd6229e16b3ae13c3eef9617a.zip |
default delay was mistakely increased from 25s to 250s (olivier faurax)
Diffstat (limited to 'mdkapplet')
-rwxr-xr-x | mdkapplet | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ my $release = mdkonline::get_release(); my %config = getVarsFromSh('/etc/sysconfig/mdkapplet'); $config{UPDATE_FREQUENCY} ||= 3*60*60; # default to 3hours -$config{FIRST_CHECK_DELAY} ||= 250000; # default to 25 seconds +$config{FIRST_CHECK_DELAY} ||= 25 * 1000; # default to 25 seconds sub my_sprintf_fixutf8 { mdkonline::get_release() < 2006.0 ? common::sprintf_fixutf8(@_) : @_; |