diff options
author | Volker Lendecke <vl@samba.org> | 2013-01-14 21:36:51 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-01-14 13:45:00 -0800 |
commit | 215427202ad993ad48d0ea4c47ac4435fc4610fb (patch) | |
tree | e022a3c93547c668fe1cf4618d048616fa75de36 | |
parent | 0bafce02f80af8c7d1fb0c6b210353925a3f4c39 (diff) | |
download | samba-215427202ad993ad48d0ea4c47ac4435fc4610fb.tar.gz samba-215427202ad993ad48d0ea4c47ac4435fc4610fb.tar.bz2 samba-215427202ad993ad48d0ea4c47ac4435fc4610fb.zip |
smbd: Fix bug 9544, part 1
Adapt the sync function names
Reviewed by: Jeremy Allison <jra@samba.org>
-rw-r--r-- | source3/modules/vfs_commit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/modules/vfs_commit.c b/source3/modules/vfs_commit.c index 865250a5d8..c9c0a056a5 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); |