diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-11-18 13:02:19 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2005-11-18 13:02:19 +0000 |
commit | 3bebdc6480e26e8a5d6a4ded12fa7ef2121cd7a1 (patch) | |
tree | 46ea435d6b42c51e64f3b4e9e693ad1a85e0e989 | |
parent | 6542dc4c26e000aed09b6ec10a2120ed3e10cb2d (diff) | |
download | samba-3bebdc6480e26e8a5d6a4ded12fa7ef2121cd7a1.tar.gz samba-3bebdc6480e26e8a5d6a4ded12fa7ef2121cd7a1.tar.xz samba-3bebdc6480e26e8a5d6a4ded12fa7ef2121cd7a1.zip |
r11784: Fix minor glitch found by Rainer Weikusat <rainer.weikusat@sncag.com> -- Thanks
-rw-r--r-- | examples/VFS/skel_opaque.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c index e6b7d032fcf..e6af475da6e 100644 --- a/examples/VFS/skel_opaque.c +++ b/examples/VFS/skel_opaque.c @@ -524,7 +524,7 @@ static int skel_aio_fsync(struct vfs_handle_struct *handle, struct files_struct static int skel_aio_suspend(struct vfs_handle_struct *handle, struct files_struct *fsp, const SMB_STRUCT_AIOCB * const aiocb[], int n, const struct timespec *ts) { - return vfswrap_aioi_suspend(NULL, fsp, aiocb, n, ts); + return vfswrap_aio_suspend(NULL, fsp, aiocb, n, ts); } /* VFS operations structure */ |