diff options
author | jkh <jkh@FreeBSD.org> | 1996-09-10 19:49:41 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-09-10 19:49:41 +0000 |
commit | ccd8fb4fade2750d29484b1533af4b0cf6079582 (patch) | |
tree | 78c05290adf0c2b0f33c1f97502685d00550357b /usr.bin | |
parent | f5b99ab554eb6968c2a13a082d02ec86b97122fc (diff) | |
download | FreeBSD-src-ccd8fb4fade2750d29484b1533af4b0cf6079582.zip FreeBSD-src-ccd8fb4fade2750d29484b1533af4b0cf6079582.tar.gz |
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.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/fetch/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/fetch/main.c b/usr.bin/fetch/main.c index 2239a26..2902440 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 <stdlib.h> #include <stdio.h> @@ -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; |