From e6e865ec71476755892cc14cfe35809ae34f8e47 Mon Sep 17 00:00:00 2001 From: yar Date: Fri, 15 Oct 2004 09:38:13 +0000 Subject: Clean-up around sendfile(): drop an excessive check for error condition. --- libexec/ftpd/ftpd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libexec/ftpd/ftpd.c') diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c index f2aef51..271bd2f 100644 --- a/libexec/ftpd/ftpd.c +++ b/libexec/ftpd/ftpd.c @@ -2042,9 +2042,9 @@ send_data(FILE *instr, FILE *outstr, off_t blksize, off_t filesize, int isreg) off_t offset; int err; - err = cnt = offset = 0; + cnt = offset = 0; - while (err != -1 && filesize > 0) { + while (filesize > 0) { err = sendfile(filefd, netfd, offset, 0, (struct sf_hdtr *) NULL, &cnt, 0); /* -- cgit v1.1