From 84aa46cb6489dcd731776eb9e4a91943b8bc6d92 Mon Sep 17 00:00:00 2001 From: sgunderson Date: Sat, 2 Sep 2000 15:07:49 +0000 Subject: [PATCH] do_download(): Removed the check for f->upload :-D --- ftpd.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ftpd.c b/ftpd.c index 9cbf5e8..637469b 100644 --- a/ftpd.c +++ b/ftpd.c @@ -790,11 +790,7 @@ int do_download(struct ftran *f) * Here we use a rather simplified sending `algorithm', * leaving most of the quirks to the system calls. */ - if (f->dir_listing == 0 -#if WANT_UPLOAD - && f->upload == 0 -#endif - ) { + if (f->dir_listing == 0) { int err; size = f->size - f->pos; -- 2.39.2