svn commit: samba r7448 - in trunk/examples/VFS: .

jra at samba.org jra at samba.org
Thu Jun 9 18:22:08 GMT 2005


Author: jra
Date: 2005-06-09 18:22:08 +0000 (Thu, 09 Jun 2005)
New Revision: 7448

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=7448

Log:
Fixup cut-n-paste typos. Thanks to Maurice Massar <massar at unix-ag.uni-kl.de> for
being so careful :-).
Jeremy.

Modified:
   trunk/examples/VFS/skel_opaque.c


Changeset:
Modified: trunk/examples/VFS/skel_opaque.c
===================================================================
--- trunk/examples/VFS/skel_opaque.c	2005-06-09 18:15:23 UTC (rev 7447)
+++ trunk/examples/VFS/skel_opaque.c	2005-06-09 18:22:08 UTC (rev 7448)
@@ -494,27 +494,27 @@
 
 static int skel_aio_write(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
 {
-	return vfswrap_aio_read(NULL, fsp, aiocb);
+	return vfswrap_aio_write(NULL, fsp, aiocb);
 }
 
 static ssize_t skel_aio_return(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
 {
-	return vfswrap_aio_read(NULL, fsp, aiocb);
+	return vfswrap_aio_return(NULL, fsp, aiocb);
 }
 
 static int skel_aio_cancel(struct vfs_handle_struct *handle, struct files_struct *fsp, int fd, SMB_STRUCT_AIOCB *aiocb)
 {
-	return vfswrap_aio_read(NULL, fsp, fd, aiocb);
+	return vfswrap_aio_cancel(NULL, fsp, fd, aiocb);
 }
 
 static int skel_aio_error(struct vfs_handle_struct *handle, struct files_struct *fsp, SMB_STRUCT_AIOCB *aiocb)
 {
-	return vfswrap_aio_read(NULL, fsp, aiocb);
+	return vfswrap_aio_error(NULL, fsp, aiocb);
 }
 
 static int skel_aio_fsync(struct vfs_handle_struct *handle, struct files_struct *fsp, int op, SMB_STRUCT_AIOCB *aiocb)
 {
-	return vfswrap_aio_read(NULL, fsp, op, aiocb);
+	return vfswrap_aio_fsync(NULL, fsp, op, aiocb);
 }
 
 /* VFS operations structure */



More information about the samba-cvs mailing list