Last version of sshfs-fuse that is compatible with our implementation of fuse. Changelog can be found at https://github.com/libfuse/sshfs/blob/sshfs-2.10/ChangeLog.rst. Feedback on update from edd@. OK edd@
30 lines
905 B
Plaintext
30 lines
905 B
Plaintext
$OpenBSD: patch-sshfs_c,v 1.5 2019/08/18 19:29:33 bket Exp $
|
|
Index: sshfs.c
|
|
--- sshfs.c.orig
|
|
+++ sshfs.c
|
|
@@ -12,7 +12,6 @@
|
|
#include <fuse.h>
|
|
#include <fuse_opt.h>
|
|
#if !defined(__CYGWIN__)
|
|
-#include <fuse_lowlevel.h>
|
|
#endif
|
|
#ifdef __APPLE__
|
|
# include <fuse_darwin.h>
|
|
@@ -39,6 +38,7 @@
|
|
#include <sys/utsname.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/poll.h>
|
|
+#include <sys/mount.h>
|
|
#include <netinet/in.h>
|
|
#include <netinet/tcp.h>
|
|
#include <glib.h>
|
|
@@ -3302,7 +3302,7 @@ static void usage(const char *progname)
|
|
" -h --help print help\n"
|
|
" -V --version print version\n"
|
|
"\n"
|
|
-"SSHFS options:\n"
|
|
+"SSHFS options (a complete overview is provided by sshfs(1)):\n"
|
|
" -p PORT equivalent to '-o port=PORT'\n"
|
|
" -C equivalent to '-o compression=yes'\n"
|
|
" -F ssh_configfile specifies alternative ssh configuration file\n"
|