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-08-19 21:14:39 -0700
committerMichael Forney <mforney@mforney.org>2018-08-21 12:18:42 -0700
commit68a9e06c2dfcb43c2c3bef5ac12942aa021cf453 (patch)
tree790fa33b60b20ea6429de84b0112427029fc4adf /pkg/sshfs/patch/0004-Use-struct-list_head-instead-of-GList.patch
parent37ac685731b82d4163f22fd47152c2668f6d9e62 (diff)
sshfs: Update to 3.4.0
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 5eff1aab..b8bf8c9c 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 d5d8d25d0c01fe836f83d904f42fdaeea47a13e6 Mon Sep 17 00:00:00 2001
+From 2a30977257b83a7711a29e6992b5f70919ac4df0 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 f2746b5..1d7ae03 100644
+index b604469..a9dde7c 100644
--- a/sshfs.c
+++ b/sshfs.c
-@@ -2086,14 +2086,14 @@ static int sshfs_req_pending(struct request *req)
+@@ -2089,14 +2089,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 f2746b5..1d7ae03 100644
while (!done || outstanding) {
struct request *req;
struct buffer name;
-@@ -2108,16 +2108,14 @@ static int sftp_readdir_async(struct buffer *handle, void *buf, off_t offset,
+@@ -2111,16 +2111,14 @@ static int sftp_readdir_async(struct buffer *handle, void *buf, off_t offset,
break;
}
@@ -49,7 +49,7 @@ index f2746b5..1d7ae03 100644
outstanding--;
if (done) {
-@@ -2156,7 +2154,7 @@ static int sftp_readdir_async(struct buffer *handle, void *buf, off_t offset,
+@@ -2159,7 +2157,7 @@ static int sftp_readdir_async(struct buffer *handle, void *buf, off_t offset,
}
}
}
@@ -59,5 +59,5 @@ index f2746b5..1d7ae03 100644
return err;
}
--
-2.17.0
+2.18.0