aboutsummaryrefslogtreecommitdiff
path: root/sshfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshfs.c')
-rw-r--r--sshfs.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sshfs.c b/sshfs.c
index 9809057..4f041e0 100644
--- a/sshfs.c
+++ b/sshfs.c
@@ -423,7 +423,13 @@ static struct fuse_opt sshfs_opts[] = {
FUSE_OPT_KEY("-p ", KEY_PORT),
FUSE_OPT_KEY("-C", KEY_COMPRESS),
FUSE_OPT_KEY("-F ", KEY_CONFIGFILE),
+
+ /* For backwards compatibility */
+ SSHFS_OPT("cache=yes", dir_cache, 1),
+ SSHFS_OPT("cache=no", dir_cache, 0),
+
FUSE_OPT_END
+
};
static struct fuse_opt workaround_opts[] = {