From: Volker Lendecke Date: Mon, 14 Jan 2013 20:36:51 +0000 (+0100) Subject: smbd: Fix bug 9544, part 1 X-Git-Tag: ldb-1.1.15~162 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=215427202ad993ad48d0ea4c47ac4435fc4610fb;p=thirdparty%2Fsamba.git smbd: Fix bug 9544, part 1 Adapt the sync function names Reviewed by: Jeremy Allison --- diff --git a/source3/modules/vfs_commit.c b/source3/modules/vfs_commit.c index 865250a5d8a..c9c0a056a5d 100644 --- a/source3/modules/vfs_commit.c +++ b/source3/modules/vfs_commit.c @@ -307,10 +307,10 @@ static int commit_ftruncate( static struct vfs_fn_pointers vfs_commit_fns = { .open_fn = commit_open, .close_fn = commit_close, - .write = commit_write, - .pwrite = commit_pwrite, + .write_fn = commit_write, + .pwrite_fn = commit_pwrite, .connect_fn = commit_connect, - .ftruncate = commit_ftruncate + .ftruncate_fn = commit_ftruncate }; NTSTATUS vfs_commit_init(void);