diff options
author | Herb Lewis <herb@samba.org> | 2000-05-10 01:31:46 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2000-05-10 01:31:46 +0000 |
commit | c88222da0ced7edf90b68e68ec49e0fe35a512fe (patch) | |
tree | 884d6635430b8f02baa84f958fecc6fa67167889 /source3/smbd/files.c | |
parent | e522de480891b9d72ba4cd2d4c8decb6909809a9 (diff) | |
download | samba-c88222da0ced7edf90b68e68ec49e0fe35a512fe.tar.gz |
Fix for misunderstanding of fsync added when vfs layer
was done. Samba was doing fsync's (bleagh).
Jeremy.
(This used to be commit f9a52cadbf11f7afcef754a59d783964a2edb5bc)
Diffstat (limited to 'source3/smbd/files.c')
-rw-r--r-- | source3/smbd/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/files.c b/source3/smbd/files.c index 5b930f99400..a4837a1a8bc 100644 --- a/source3/smbd/files.c +++ b/source3/smbd/files.c @@ -283,7 +283,7 @@ void file_sync_all(connection_struct *conn) for (fsp=Files;fsp;fsp=next) { next=fsp->next; if ((conn == fsp->conn) && (fsp->fd != -1)) { - conn->vfs_ops.fsync(fsp->fd); + sync_file(conn,fsp); } } } |