]> Dogcows Code - chaz/tar/commitdiff
(check_time): Use volume_start_time when checking
authorSergey Poznyakoff <gray@gnu.org.ua>
Mon, 12 Jun 2006 13:19:43 +0000 (13:19 +0000)
committerSergey Poznyakoff <gray@gnu.org.ua>
Mon, 12 Jun 2006 13:19:43 +0000 (13:19 +0000)
for the timestamp plausability.

src/extract.c

index 15fb9f2525c20b546bcb61e5e241329ca7eba949..c64206a882531307e3413985c884ec84ce9d8bfd 100644 (file)
@@ -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);
This page took 0.023432 seconds and 4 git commands to generate.