From d9ebcebdc10efc5a492792b0adcc881f0d175772 Mon Sep 17 00:00:00 2001 From: Andrew Filonov Date: Thu, 25 Mar 2010 11:20:16 +0200 Subject: [PATCH] Another side of this bug, missed before Signed-off-by: Slava Zanko --- lib/vfs/mc-vfs/extfs/uzip.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vfs/mc-vfs/extfs/uzip.in b/lib/vfs/mc-vfs/extfs/uzip.in index 7e255c289..9492f2fd9 100644 --- a/lib/vfs/mc-vfs/extfs/uzip.in +++ b/lib/vfs/mc-vfs/extfs/uzip.in @@ -262,7 +262,7 @@ sub mczipfs_list { my @match = /$regex_nonzipinfo_line/; next if ($#match != 10); my @rmatch = ('', '', 'unknown', $match[0], '', $match[2], $match[1], - $match[6] + ($match[6] < 70 ? 2000 : 1900), $match[4], $match[5], + $match[6] > 100 ? $match[6] : $match[6] + ($match[6] < 70 ? 2000 : 1900), $match[4], $match[5], $match[7], $match[8], "00", $match[10]); &checked_print_file(@rmatch); } -- 2.11.4.GIT