summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_syncops.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-11 14:19:28 +0100
committerMichael Adam <obnox@samba.org>2008-04-21 00:22:42 +0200
commit0db7aba8af80a01150d1061a4192ab814e4234b7 (patch)
treeb42e495e62f4c6cb7a9466955c5724e010e17959 /source3/modules/vfs_syncops.c
parent8c9060240eec82d750904d8b07fd38b168a84bea (diff)
downloadsamba-0db7aba8af80a01150d1061a4192ab814e4234b7.tar.gz
samba-0db7aba8af80a01150d1061a4192ab814e4234b7.tar.bz2
samba-0db7aba8af80a01150d1061a4192ab814e4234b7.zip
Remove redundant parameter fd from SMB_VFS_CLOSE().
Now all those redundant fd's have vanished from the VFS API. Michael (This used to be commit 14294535512a7f191c5008e622b6708e417854ae)
Diffstat (limited to 'source3/modules/vfs_syncops.c')
-rw-r--r--source3/modules/vfs_syncops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/modules/vfs_syncops.c b/source3/modules/vfs_syncops.c
index 3aa89b40a6..d3f7868400 100644
--- a/source3/modules/vfs_syncops.c
+++ b/source3/modules/vfs_syncops.c
@@ -165,14 +165,14 @@ static int syncops_rmdir(vfs_handle_struct *handle, const char *fname)
}
/* close needs to be handled specially */
-static int syncops_close(vfs_handle_struct *handle, files_struct *fsp, int fd)
+static int syncops_close(vfs_handle_struct *handle, files_struct *fsp)
{
if (fsp->can_write && sync_onclose) {
/* ideally we'd only do this if we have written some
data, but there is no flag for that in fsp yet. */
- fsync(fd);
+ fsync(fsp->fh->fd);
}
- return SMB_VFS_NEXT_CLOSE(handle, fsp, fd);
+ return SMB_VFS_NEXT_CLOSE(handle, fsp);
}