summaryrefslogtreecommitdiff
path: root/pkg/sshfs/patch/0004-Use-struct-list_head-instead-of-GList.patch
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2018-12-23 10:56:22 -0800
committerMichael Forney <mforney@mforney.org>2018-12-23 13:40:49 -0800
commitef510023de45de4ef587f35846022f00945ef5bd (patch)
tree29ca5dcbd2829b528e852f36db191eedbed18e6c /pkg/sshfs/patch/0004-Use-struct-list_head-instead-of-GList.patch
parentd635d9281ba10519821736ad91d2beddee5361ba (diff)
sshfs: Update to 3.5.1
Diffstat (limited to 'pkg/sshfs/patch/0004-Use-struct-list_head-instead-of-GList.patch')
-rw-r--r--pkg/sshfs/patch/0004-Use-struct-list_head-instead-of-GList.patch12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkg/sshfs/patch/0004-Use-struct-list_head-instead-of-GList.patch b/pkg/sshfs/patch/0004-Use-struct-list_head-instead-of-GList.patch
index b8bf8c9c..bf9df8da 100644
--- a/pkg/sshfs/patch/0004-Use-struct-list_head-instead-of-GList.patch
+++ b/pkg/sshfs/patch/0004-Use-struct-list_head-instead-of-GList.patch
@@ -1,4 +1,4 @@
-From 2a30977257b83a7711a29e6992b5f70919ac4df0 Mon Sep 17 00:00:00 2001
+From 856db868eade9967192bfd9e7a274bfa5b6c6d39 Mon Sep 17 00:00:00 2001
From: Michael Forney <mforney@mforney.org>
Date: Sun, 5 Jun 2016 17:30:20 -0700
Subject: [PATCH] Use struct list_head instead of GList
@@ -8,10 +8,10 @@ Subject: [PATCH] Use struct list_head instead of GList
1 file changed, 7 insertions(+), 9 deletions(-)
diff --git a/sshfs.c b/sshfs.c
-index b604469..a9dde7c 100644
+index a244e97..28fcaf4 100644
--- a/sshfs.c
+++ b/sshfs.c
-@@ -2089,14 +2089,14 @@ static int sshfs_req_pending(struct request *req)
+@@ -2090,14 +2090,14 @@ static int sshfs_req_pending(struct request *req)
static int sftp_readdir_async(struct buffer *handle, void *buf, off_t offset,
fuse_fill_dir_t filler)
{
@@ -29,7 +29,7 @@ index b604469..a9dde7c 100644
while (!done || outstanding) {
struct request *req;
struct buffer name;
-@@ -2111,16 +2111,14 @@ static int sftp_readdir_async(struct buffer *handle, void *buf, off_t offset,
+@@ -2112,16 +2112,14 @@ static int sftp_readdir_async(struct buffer *handle, void *buf, off_t offset,
break;
}
@@ -49,7 +49,7 @@ index b604469..a9dde7c 100644
outstanding--;
if (done) {
-@@ -2159,7 +2157,7 @@ static int sftp_readdir_async(struct buffer *handle, void *buf, off_t offset,
+@@ -2160,7 +2158,7 @@ static int sftp_readdir_async(struct buffer *handle, void *buf, off_t offset,
}
}
}
@@ -59,5 +59,5 @@ index b604469..a9dde7c 100644
return err;
}
--
-2.18.0
+2.19.2