svn commit: samba r11784 - branches/SAMBA_3_0/examples/VFS trunk/examples/VFS

vlendec at samba.org vlendec at samba.org
Fri Nov 18 13:02:20 GMT 2005


Author: vlendec
Date: 2005-11-18 13:02:19 +0000 (Fri, 18 Nov 2005)
New Revision: 11784

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

Log:
Fix minor glitch found by Rainer Weikusat <rainer.weikusat at sncag.com> -- Thanks
Modified:
   branches/SAMBA_3_0/examples/VFS/skel_opaque.c
   trunk/examples/VFS/skel_opaque.c


Changeset:
Modified: branches/SAMBA_3_0/examples/VFS/skel_opaque.c
===================================================================
--- branches/SAMBA_3_0/examples/VFS/skel_opaque.c	2005-11-18 12:57:48 UTC (rev 11783)
+++ branches/SAMBA_3_0/examples/VFS/skel_opaque.c	2005-11-18 13:02:19 UTC (rev 11784)
@@ -524,7 +524,7 @@
 
 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 */

Modified: trunk/examples/VFS/skel_opaque.c
===================================================================
--- trunk/examples/VFS/skel_opaque.c	2005-11-18 12:57:48 UTC (rev 11783)
+++ trunk/examples/VFS/skel_opaque.c	2005-11-18 13:02:19 UTC (rev 11784)
@@ -524,7 +524,7 @@
 
 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 */



More information about the samba-cvs mailing list