From: Martin Matuška Date: Thu, 25 Dec 2025 09:00:35 +0000 (+0100) Subject: Merge pull request #2815 from AZero13/= X-Git-Tag: v3.8.5~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8eda7c527777db465cf42cf214805c14bfb0aed4;p=thirdparty%2Flibarchive.git Merge pull request #2815 from AZero13/= Use >=, not => (cherry picked from commit c4597a73f3d223b65e93e7464bf4ecb3260cb81d) --- diff --git a/unzip/bsdunzip.c b/unzip/bsdunzip.c index 1b520e841..14bd418f1 100644 --- a/unzip/bsdunzip.c +++ b/unzip/bsdunzip.c @@ -654,11 +654,11 @@ recheck: #elif HAVE_STRUCT_STAT_ST_MTIME_N sb.st_mtime > mtime.tv_sec || (sb.st_mtime == mtime.tv_sec && - sb.st_mtime_n => mtime.tv_nsec) + sb.st_mtime_n >= mtime.tv_nsec) #elif HAVE_STRUCT_STAT_ST_MTIME_USEC sb.st_mtime > mtime.tv_sec || (sb.st_mtime == mtime.tv_sec && - sb.st_mtime_usec => mtime.tv_nsec / 1000) + sb.st_mtime_usec >= mtime.tv_nsec / 1000) #else sb.st_mtime > mtime.tv_sec #endif