From: Martin Mares Date: Thu, 22 Jan 2004 20:00:49 +0000 (+0000) Subject: Hours have 3600 seconds, days have 1440 minutes :) X-Git-Tag: holmes-import~1127 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=73156361d6d5eaefeabf28aa7220bc47d38c5d61;p=libucw.git Hours have 3600 seconds, days have 1440 minutes :) --- diff --git a/lib/conf.c b/lib/conf.c index c2e5f1b4..21a28b24 100644 --- a/lib/conf.c +++ b/lib/conf.c @@ -94,7 +94,7 @@ struct unit { static const struct unit units[] = { { 'd', 86400, 1 }, - { 'h', 1440, 1 }, + { 'h', 3600, 1 }, { 'k', 1000, 1 }, { 'm', 1000000, 1 }, { 'g', 1000000000, 1 },