mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: curlftpfs: Add patches to fix bugs.
* gnu/packages/file-systems.scm (curlftpfs)[source]: Add patches. * gnu/packages/patches/curlftpfs-fix-error-closing-file.patch, gnu/packages/patches/curlftpfs-fix-file-names.patch, gnu/packages/patches/curlftpfs-fix-memory-leak.patch, gnu/packages/patches/curlftpfs-fix-no_verify_hostname.patch: New files. * gnu/local.mk (dist_patch_DATA): Add them.
This commit is contained in:
parent
affea88cf5
commit
8244aea182
6 changed files with 159 additions and 2 deletions
23
gnu/packages/patches/curlftpfs-fix-error-closing-file.patch
Normal file
23
gnu/packages/patches/curlftpfs-fix-error-closing-file.patch
Normal file
|
@ -0,0 +1,23 @@
|
|||
From d27d1cd3a79959ff1eb8439b06e108149f21141f Mon Sep 17 00:00:00 2001
|
||||
From: Joseph Lansdowne <j49137@gmail.com>
|
||||
Date: Sun, 31 Mar 2019 19:26:10 +0100
|
||||
Subject: [PATCH] fix error on closing written file
|
||||
|
||||
---
|
||||
ChangeLog | 1 +
|
||||
ftpfs.c | 2 +-
|
||||
2 files changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/ftpfs.c b/ftpfs.c
|
||||
index 0346354..34f8c38 100644
|
||||
--- a/ftpfs.c
|
||||
+++ b/ftpfs.c
|
||||
@@ -503,7 +503,7 @@ static void *ftpfs_write_thread(void *data) {
|
||||
|
||||
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_INFILESIZE, -1L);
|
||||
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);
|
Loading…
Add table
Add a link
Reference in a new issue