From 23d3e4c5b313f1a6cb14dcee505a12020a8bf418 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 16 Jan 2026 14:28:25 -0500 Subject: Fixes number of seconds in an hour. Oops. --- src/lib/core/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/core/utils.c b/src/lib/core/utils.c index a8b1c73..2cfebdf 100644 --- a/src/lib/core/utils.c +++ b/src/lib/core/utils.c @@ -1092,7 +1092,7 @@ int str_to_timeout(char *s) { } else if (*scale == 'm') { value *= 60; // minutes } else if (*scale == 'h') { - value *= 3200; // hours + value *= 3600; // hours } else { return STR_TO_TIMEOUT_INVALID_TIME_SCALE; // invalid time scale } -- cgit