summaryrefslogtreecommitdiff
path: root/sysutils/fusefs-sshfs/files
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2020-06-05 14:46:31 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2020-06-05 14:46:31 +0000
commit87096d40bb6fba52cb7471fe19826511a1a8d857 (patch)
treed71800e09ce6b76f5bea2de4ed0814826dff5e40 /sysutils/fusefs-sshfs/files
parentUpdat to 3.1 (diff)
sysutils/fusefs-sshfs: Improve FreeBSD support
- include posix_openpt() usage patch - add workaround for readdir() issue: #211 - fix few warnings - Add DOCS option - remove gettext dep Upstream patches: https://github.com/libfuse/sshfs/pull/212 https://github.com/libfuse/sshfs/issues/211 PR: 246325 Submitted by: rozhuk.im@gmail.com
Notes
Notes: svn path=/head/; revision=538024
Diffstat (limited to 'sysutils/fusefs-sshfs/files')
-rw-r--r--sysutils/fusefs-sshfs/files/patch-sshfs.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/sysutils/fusefs-sshfs/files/patch-sshfs.c b/sysutils/fusefs-sshfs/files/patch-sshfs.c
deleted file mode 100644
index e7122232805b..000000000000
--- a/sysutils/fusefs-sshfs/files/patch-sshfs.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- sshfs.c.orig 2018-01-08 21:05:08 UTC
-+++ sshfs.c
-@@ -971,7 +971,7 @@ static int pty_master(char **name)
- {
- int mfd;
-
-- mfd = open("/dev/ptmx", O_RDWR | O_NOCTTY);
-+ mfd = posix_openpt(O_RDWR | O_NOCTTY);
- if (mfd == -1) {
- perror("failed to open pty");
- return -1;