From f7c176c92beb4e2164abda03add0e5345d4f16ca Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Tue, 10 Sep 1996 19:49:41 +0000 Subject: [PATCH] Remove the code which has restart looking at the modtime. That's just moronic! We don't care about the time in restart mode, only the size. It's *mirror* mode which cares about modtimes. --- usr.bin/fetch/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/fetch/main.c b/usr.bin/fetch/main.c index 2239a26d75c..2902440d561 100644 --- a/usr.bin/fetch/main.c +++ b/usr.bin/fetch/main.c @@ -24,7 +24,7 @@ * SUCH DAMAGE. */ -/* $Id: main.c,v 1.19 1996/08/23 06:21:17 jkh Exp $ */ +/* $Id: main.c,v 1.20 1996/08/31 22:03:05 jkh Exp $ */ #include #include @@ -319,7 +319,7 @@ ftpget() return; } else if (restart) { - if (size0 && size0 < size && modtime == t) + if (size0 && size0 < size) seekloc = size0; else seekloc = size0 = 0;