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/include | |
parent | e522de480891b9d72ba4cd2d4c8decb6909809a9 (diff) | |
download | samba-c88222da0ced7edf90b68e68ec49e0fe35a512fe.tar.gz samba-c88222da0ced7edf90b68e68ec49e0fe35a512fe.tar.bz2 samba-c88222da0ced7edf90b68e68ec49e0fe35a512fe.zip |
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/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 4941dd8519..ec786985d3 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -3075,7 +3075,7 @@ ssize_t write_file(files_struct *fsp, char *data, SMB_OFF_T pos, size_t n); void delete_write_cache(files_struct *fsp); void set_filelen_write_cache(files_struct *fsp, SMB_OFF_T file_size); ssize_t flush_write_cache(files_struct *fsp, enum flush_reason_enum reason); -void sys_fsync_file(connection_struct *conn, files_struct *fsp); +void sync_file(connection_struct *conn, files_struct *fsp); /*The following definitions come from smbd/filename.c */ |