From b8013bc11a0b7e0271f370cba49d741e26b7fa88 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sun, 25 Nov 2018 20:02:24 +0900 Subject: [PATCH] Fix #2 : File dl of over 2GB failing over SSL Not sure if this breaks the "STATE_WRITE_RANGES" case. --- ssl.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ssl.c b/ssl.c index 9a3051c..830f955 100644 --- a/ssl.c +++ b/ssl.c @@ -69,12 +69,6 @@ int ssl_blk_write(struct REQUEST *req, int offset, int len) int rc; char buf[4096]; - if (lseek(req->bfd, offset, SEEK_SET) == -1) { - if (debug) - perror("lseek"); - return -1; - } - if (len > sizeof(buf)) len = sizeof(buf); rc = read(req->bfd, buf, len);