浏览代码

(check_time): Use volume_start_time when checking
for the timestamp plausability.

Sergey Poznyakoff 19 年之前
父节点
当前提交
b229a86dd7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/extract.c

+ 1 - 1
src/extract.c

@@ -193,7 +193,7 @@ check_time (char const *file_name, struct timespec t)
   if (t.tv_sec <= 0)
     WARN ((0, 0, _("%s: implausibly old time stamp %s"),
 	   file_name, tartime (t, true)));
-  else if (timespec_cmp (start_time, t) < 0)
+  else if (timespec_cmp (volume_start_time, t) < 0)
     {
       struct timespec now;
       gettime (&now);