18 lines
972 B
Diff
18 lines
972 B
Diff
--- ftpfs.c
|
|
+++ ftpfs.c
|
|
@@ -503,7 +503,6 @@ static void *ftpfs_write_thread(void *da
|
|
|
|
curl_easy_setopt_or_die(fh->write_conn, CURLOPT_URL, fh->full_path);
|
|
curl_easy_setopt_or_die(fh->write_conn, CURLOPT_UPLOAD, 1);
|
|
- curl_easy_setopt_or_die(fh->write_conn, CURLOPT_INFILESIZE, -1);
|
|
curl_easy_setopt_or_die(fh->write_conn, CURLOPT_READFUNCTION, write_data_bg);
|
|
curl_easy_setopt_or_die(fh->write_conn, CURLOPT_READDATA, fh);
|
|
curl_easy_setopt_or_die(fh->write_conn, CURLOPT_LOW_SPEED_LIMIT, 1);
|
|
@@ -645,7 +645,6 @@ static int create_empty_file(const char
|
|
pthread_mutex_lock(&ftpfs.lock);
|
|
cancel_previous_multi();
|
|
curl_easy_setopt_or_die(ftpfs.connection, CURLOPT_URL, full_path);
|
|
- curl_easy_setopt_or_die(ftpfs.connection, CURLOPT_INFILESIZE, 0);
|
|
curl_easy_setopt_or_die(ftpfs.connection, CURLOPT_UPLOAD, 1);
|
|
curl_easy_setopt_or_die(ftpfs.connection, CURLOPT_READDATA, NULL);
|
|
CURLcode curl_res = curl_easy_perform(ftpfs.connection);
|