mirror of
https://github.com/winfsp/sshfs-win.git
synced 2025-04-18 23:04:01 +03:00
update SSHFS to latest upstream version (3.7.1)
This commit is contained in:
parent
4c6041c3fa
commit
d91f32089b
4
Makefile
4
Makefile
@ -1,8 +1,8 @@
|
||||
MyProductName = "SSHFS-Win"
|
||||
MyCompanyName = "Navimatics LLC"
|
||||
MyDescription = "SSHFS for Windows"
|
||||
MyProductVersion = "2021.1 Beta"
|
||||
MyVersion = 3.5.$(shell date '+%y%j')
|
||||
MyProductVersion = "2021.1 Beta2"
|
||||
MyVersion = 3.7.$(shell date '+%y%j')
|
||||
ifeq ($(shell uname -m),x86_64)
|
||||
MyArch = x64
|
||||
else
|
||||
|
@ -1,8 +1,8 @@
|
||||
diff --git a/sshfs.c b/sshfs.c
|
||||
index 06a1ef3..e1e39e2 100644
|
||||
index ff40c81..5c8d4b8 100644
|
||||
--- a/sshfs.c
|
||||
+++ b/sshfs.c
|
||||
@@ -273,7 +273,7 @@ struct sshfs {
|
||||
@@ -365,7 +365,7 @@ struct sshfs {
|
||||
unsigned outstanding_len;
|
||||
unsigned max_outstanding_len;
|
||||
pthread_cond_t outstanding_cond;
|
||||
@ -11,15 +11,15 @@ index 06a1ef3..e1e39e2 100644
|
||||
char *password;
|
||||
int ext_posix_rename;
|
||||
int ext_statvfs;
|
||||
@@ -403,6 +403,7 @@ static struct fuse_opt sshfs_opts[] = {
|
||||
@@ -496,6 +496,7 @@ static struct fuse_opt sshfs_opts[] = {
|
||||
SSHFS_OPT("follow_symlinks", follow_symlinks, 1),
|
||||
SSHFS_OPT("no_check_root", no_check_root, 1),
|
||||
SSHFS_OPT("password_stdin", password_stdin, 1),
|
||||
+ SSHFS_OPT("password_stdout", password_stdout, 1),
|
||||
SSHFS_OPT("delay_connect", delay_connect, 1),
|
||||
SSHFS_OPT("slave", slave, 1),
|
||||
SSHFS_OPT("disable_hardlink", disable_hardlink, 1),
|
||||
@@ -1532,6 +1533,14 @@ static int sftp_init()
|
||||
SSHFS_OPT("slave", passive, 1),
|
||||
SSHFS_OPT("passive", passive, 1),
|
||||
@@ -1691,6 +1692,14 @@ static int sftp_init(struct conn *conn)
|
||||
|
||||
out:
|
||||
buf_free(&buf);
|
||||
|
@ -1,8 +1,8 @@
|
||||
diff --git a/sshfs.c b/sshfs.c
|
||||
index 06a1ef3..dc772c7 100644
|
||||
index 5c8d4b8..e253291 100644
|
||||
--- a/sshfs.c
|
||||
+++ b/sshfs.c
|
||||
@@ -3446,6 +3446,9 @@ static int sshfs_opt_proc(void *data, const char *arg, int key,
|
||||
@@ -3703,6 +3703,9 @@ static int sshfs_opt_proc(void *data, const char *arg, int key,
|
||||
* Furthermore the mountpoint must NOT exist prior to mounting.
|
||||
* So we cannot use realpath(3).
|
||||
*/
|
||||
|
@ -1,6 +1,8 @@
|
||||
diff --git a/sshfs.c b/sshfs.c
|
||||
index e253291..ae4955a 100644
|
||||
--- a/sshfs.c
|
||||
+++ b/sshfs.c
|
||||
@@ -3462,6 +3462,15 @@
|
||||
@@ -3710,6 +3710,15 @@ static int sshfs_opt_proc(void *data, const char *arg, int key,
|
||||
&& ':' == arg[1] && '\0' == arg[2]) {
|
||||
/* drive: make a copy */
|
||||
sshfs.mountpoint = strdup(arg);
|
||||
|
2
sshfs
2
sshfs
@ -1 +1 @@
|
||||
Subproject commit 695cd8916f0e78d28009de3ffe112b9d1a1c9e5e
|
||||
Subproject commit 8059e2ce630dd2b984f7a6c44a2b5291b0fe2abc
|
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* sshfs-win.c
|
||||
*
|
||||
* Copyright 2015-2019 Bill Zissimopoulos
|
||||
* Copyright 2015-2021 Bill Zissimopoulos
|
||||
*/
|
||||
/*
|
||||
* This file is part of SSHFS-Win.
|
||||
|
Loading…
x
Reference in New Issue
Block a user