From: Sergey Poznyakoff Date: Mon, 12 Jun 2006 13:19:43 +0000 (+0000) Subject: (check_time): Use volume_start_time when checking X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=b229a86dd734a408024357da0e7927aafba1696a;p=chaz%2Ftar (check_time): Use volume_start_time when checking for the timestamp plausability. --- diff --git a/src/extract.c b/src/extract.c index 15fb9f2..c64206a 100644 --- a/src/extract.c +++ b/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);