diff options
author | Jeremy Allison <jra@samba.org> | 2010-12-02 16:40:00 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-12-03 02:26:22 +0100 |
commit | 1f1491da5ae2a2b7fd3a195f950b9057a01db18c (patch) | |
tree | 5ccda55dc82d7de6bb7f52fac365b39fd828c9b0 /source3/modules | |
parent | 5819a36aef030772f1e9da81655c1f911a10372c (diff) | |
download | samba-1f1491da5ae2a2b7fd3a195f950b9057a01db18c.tar.gz samba-1f1491da5ae2a2b7fd3a195f950b9057a01db18c.tar.bz2 samba-1f1491da5ae2a2b7fd3a195f950b9057a01db18c.zip |
Oops. Missed adding vfswrap_posix_fallocate to vfs_default_fns table.
Jeremy.
Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Fri Dec 3 02:26:23 CET 2010 on sn-devel-104
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_default.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index 63993fed36..0ec5b66df3 100644 --- a/source3/modules/vfs_default.c +++ b/source3/modules/vfs_default.c @@ -1672,6 +1672,7 @@ static struct vfs_fn_pointers vfs_default_fns = { .getwd = vfswrap_getwd, .ntimes = vfswrap_ntimes, .ftruncate = vfswrap_ftruncate, + .posix_fallocate = vfswrap_posix_fallocate, .lock = vfswrap_lock, .kernel_flock = vfswrap_kernel_flock, .linux_setlease = vfswrap_linux_setlease, |