From b3f659a78c9df821f7ae4bc01cbea5785dd688c0 Mon Sep 17 00:00:00 2001 From: Martin Matuska Date: Fri, 14 Jul 2023 12:39:25 +0200 Subject: [PATCH] unzip: fix mtime number error from last commit --- unzip/bsdunzip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unzip/bsdunzip.c b/unzip/bsdunzip.c index d75ca490f..3280963bf 100644 --- a/unzip/bsdunzip.c +++ b/unzip/bsdunzip.c @@ -651,7 +651,7 @@ recheck: #elif HAVE_STRUCT_STAT_ST_MTIME_USEC sb.st_mtime > mtime.tv_sec || (sb.st_mtime == mtime.tv_sec && - sb.st_mtime_usec * 1000 => mtime.tv_nsec) + sb.st_mtime_usec => mtime.tv_nsec / 1000) #else sb.st_mtime > mtime.tv_sec #endif -- 2.47.2