summaryrefslogtreecommitdiff
path: root/user/fuse3/fix-realpath.patch
diff options
context:
space:
mode:
authorMax Rees <maxcrees@me.com>2018-09-15 23:01:33 -0400
committerMax Rees <maxcrees@me.com>2018-09-17 15:51:25 -0400
commit5c620e978b63c54067156fbce424034923f1358c (patch)
tree9ce8a259ac53a27e71f425941b8f63c52ca02155 /user/fuse3/fix-realpath.patch
parent4c945103914cdd7091fe9aa1878923582f2e9972 (diff)
downloadpackages-5c620e978b63c54067156fbce424034923f1358c.tar.gz
packages-5c620e978b63c54067156fbce424034923f1358c.tar.bz2
packages-5c620e978b63c54067156fbce424034923f1358c.tar.xz
packages-5c620e978b63c54067156fbce424034923f1358c.zip
user/fuse3: new package
Diffstat (limited to 'user/fuse3/fix-realpath.patch')
-rw-r--r--user/fuse3/fix-realpath.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/user/fuse3/fix-realpath.patch b/user/fuse3/fix-realpath.patch
new file mode 100644
index 000000000..375bedc96
--- /dev/null
+++ b/user/fuse3/fix-realpath.patch
@@ -0,0 +1,28 @@
+--- fuse-3.1.0.orig/util/fusermount.c
++++ fuse-3.1.0/util/fusermount.c
+@@ -1200,19 +1200,16 @@
+
+ origmnt = argv[optind];
+
+- drop_privs();
+ mnt = fuse_mnt_resolve_path(progname, origmnt);
+- if (mnt != NULL) {
+- res = chdir("/");
+- if (res == -1) {
+- fprintf(stderr, "%s: failed to chdir to '/'\n", progname);
+- goto err_out;
+- }
+- }
+- restore_privs();
+ if (mnt == NULL)
+ exit(1);
+
++ res = chdir("/");
++ if (res == -1) {
++ fprintf(stderr, "%s: failed to chdir to '/'\n", progname);
++ exit(1);
++ }
++
+ umask(033);
+ if (unmount)
+ goto do_unmount;