diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-02-20 11:32:45 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2006-02-20 11:32:45 +0000 |
commit | accc218cdb43986c642123cc3df04476dcf6de5e (patch) | |
tree | d60c852cda3932b11bec2eee6db5e54898e3ae4e /sshfs.c | |
parent | 8468900705cdaeac62430374d9bc354c732c7042 (diff) | |
download | sshfs-accc218cdb43986c642123cc3df04476dcf6de5e.tar sshfs-accc218cdb43986c642123cc3df04476dcf6de5e.tar.gz sshfs-accc218cdb43986c642123cc3df04476dcf6de5e.tar.bz2 sshfs-accc218cdb43986c642123cc3df04476dcf6de5e.zip |
revert making rename workaround on by default
Diffstat (limited to 'sshfs.c')
-rw-r--r-- | sshfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2152,7 +2152,7 @@ static void usage(const char *progname) " -o workaround=LIST colon separated list of workarounds\n" " none no workarounds enabled\n" " all all workarounds enabled\n" -" [no]rename fix renaming to existing file (default: on)\n" +" [no]rename fix renaming to existing file (default: off)\n" " [no]nodelay set nodelay tcp flag in ssh (default: on)\n" " -o idmap=TYPE user/group ID mapping, possible types are:\n" " none no translation of the ID space (default)\n" @@ -2299,7 +2299,7 @@ int main(int argc, char *argv[]) sshfs.blksize = 4096; sshfs.max_read = 65536; sshfs.nodelay_workaround = 1; - sshfs.rename_workaround = 1; + sshfs.rename_workaround = 0; sshfs.ssh_ver = 2; sshfs.progname = argv[0]; ssh_add_arg("ssh"); |