aboutsummaryrefslogtreecommitdiff
path: root/sshfs.c
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2019-11-27 10:29:46 +0000
committerNikolaus Rath <Nikolaus@rath.org>2019-11-27 10:30:35 +0000
commite91045315696186078e0cf06da9f829560a300bc (patch)
tree2fc369a2a44b0818fb50b8cc34851ff24b628fef /sshfs.c
parent28c22270f8b2bd1d65245d0417ec941a1dd6b1ec (diff)
downloadsshfs-e91045315696186078e0cf06da9f829560a300bc.tar
sshfs-e91045315696186078e0cf06da9f829560a300bc.tar.gz
sshfs-e91045315696186078e0cf06da9f829560a300bc.tar.bz2
sshfs-e91045315696186078e0cf06da9f829560a300bc.zip
Disable buflimit workaround by default.
The corresponding bug in OpenSSH has been fixed in 2007 (cf. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=365541#37), so this shouldn't be needed anymore.
Diffstat (limited to 'sshfs.c')
-rw-r--r--sshfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshfs.c b/sshfs.c
index b9602cb..ad0ed06 100644
--- a/sshfs.c
+++ b/sshfs.c
@@ -3584,7 +3584,7 @@ static void usage(const char *progname)
" [no]rename fix renaming to existing file (default: off)\n"
" [no]renamexdev fix moving across filesystems (default: off)\n"
" [no]truncate fix truncate for old servers (default: off)\n"
-" [no]buflimit fix buffer fillup bug in server (default: on)\n"
+" [no]buflimit fix buffer fillup bug in server (default: off)\n"
" [no]fstat always use stat() instead of fstat() (default: off)\n"
" [no]createmode always pass mode 0 to create (default: off)\n"
" -o idmap=TYPE user/group ID mapping (default: " IDMAP_DEFAULT ")\n"
@@ -4142,7 +4142,7 @@ int main(int argc, char *argv[])
#endif
sshfs.renamexdev_workaround = 0;
sshfs.truncate_workaround = 0;
- sshfs.buflimit_workaround = 1;
+ sshfs.buflimit_workaround = 0;
sshfs.createmode_workaround = 0;
sshfs.ssh_ver = 2;
sshfs.progname = argv[0];