summaryrefslogtreecommitdiff
path: root/source4/ntvfs/posix/vfs_posix.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-10-12 22:18:02 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:59:50 -0500
commit2003ab2598e7dc93ceb2afc7f71986e5f27758b8 (patch)
tree5ed1664bf2ad9e0b018d6f12a1f0ec5f0445aa9a /source4/ntvfs/posix/vfs_posix.c
parent7c31786a0d972029937b2f120704f425262f98c4 (diff)
downloadsamba-2003ab2598e7dc93ceb2afc7f71986e5f27758b8.tar.gz
samba-2003ab2598e7dc93ceb2afc7f71986e5f27758b8.tar.bz2
samba-2003ab2598e7dc93ceb2afc7f71986e5f27758b8.zip
r2941: added pvfs_flush() implementation to the posix backend
(This used to be commit dac00ef3b0d0f8467367d7b6ff77db7b63a042cc)
Diffstat (limited to 'source4/ntvfs/posix/vfs_posix.c')
-rw-r--r--source4/ntvfs/posix/vfs_posix.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/source4/ntvfs/posix/vfs_posix.c b/source4/ntvfs/posix/vfs_posix.c
index 7d532c3596..a17b90e369 100644
--- a/source4/ntvfs/posix/vfs_posix.c
+++ b/source4/ntvfs/posix/vfs_posix.c
@@ -39,6 +39,7 @@ static void pvfs_setup_options(struct pvfs_state *pvfs)
if (lp_map_archive(snum)) pvfs->flags |= PVFS_FLAG_MAP_ARCHIVE;
if (lp_map_system(snum)) pvfs->flags |= PVFS_FLAG_MAP_SYSTEM;
if (lp_readonly(snum)) pvfs->flags |= PVFS_FLAG_READONLY;
+ if (lp_strict_sync(snum)) pvfs->flags |= PVFS_FLAG_STRICT_SYNC;
pvfs->share_name = talloc_strdup(pvfs, lp_servicename(snum));
}
@@ -161,16 +162,6 @@ static NTSTATUS pvfs_seek(struct ntvfs_module_context *ntvfs,
}
/*
- flush a file
-*/
-static NTSTATUS pvfs_flush(struct ntvfs_module_context *ntvfs,
- struct smbsrv_request *req, struct smb_flush *io)
-{
- DEBUG(0,("pvfs_flush not implemented\n"));
- return NT_STATUS_NOT_IMPLEMENTED;
-}
-
-/*
lock a byte range
*/
static NTSTATUS pvfs_lock(struct ntvfs_module_context *ntvfs,