aboutsummaryrefslogtreecommitdiff
path: root/sshfs.c
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-09-08 15:33:35 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-09-08 15:33:35 +0000
commit205f9ac27ecdceb6f99fbef806328265e8293bac (patch)
treed352279f1504f1292365393f3677469dabd4862d /sshfs.c
parent95381c9bb467fd002e9742f426e2b036bfa3c7cc (diff)
downloadsshfs-205f9ac27ecdceb6f99fbef806328265e8293bac.tar
sshfs-205f9ac27ecdceb6f99fbef806328265e8293bac.tar.gz
sshfs-205f9ac27ecdceb6f99fbef806328265e8293bac.tar.bz2
sshfs-205f9ac27ecdceb6f99fbef806328265e8293bac.zip
revert create method
Diffstat (limited to 'sshfs.c')
-rw-r--r--sshfs.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/sshfs.c b/sshfs.c
index 7491763..53b0ea3 100644
--- a/sshfs.c
+++ b/sshfs.c
@@ -1326,14 +1326,6 @@ static int sshfs_open_common(const char *path, mode_t mode,
return err;
}
-#if FUSE_VERSION >= 24
-static int sshfs_create(const char *path, mode_t mode,
- struct fuse_file_info *fi)
-{
- return sshfs_open_common(path, mode, fi);
-}
-#endif
-
static int sshfs_open(const char *path, struct fuse_file_info *fi)
{
return sshfs_open_common(path, 0, fi);
@@ -1674,9 +1666,6 @@ static struct fuse_cache_operations sshfs_oper = {
.chown = sshfs_chown,
.truncate = sshfs_truncate,
.utime = sshfs_utime,
-#if FUSE_VERSION >= 24
- .create = sshfs_create,
-#endif
.open = sshfs_open,
.flush = sshfs_flush,
.fsync = sshfs_fsync,