[SCM] Samba Shared Repository - branch v3-2-test updated - initial-v3-2-unstable-1199-gef7c9a7

Michael Adam obnox at samba.org
Tue Jan 8 21:53:34 GMT 2008


The branch, v3-2-test has been updated
       via  ef7c9a765bcdb1c774ff4f6d14053c4aa3815f31 (commit)
      from  c88555ce45aa2998037d316f3a8edccd04be04a4 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit ef7c9a765bcdb1c774ff4f6d14053c4aa3815f31
Author: Michael Adam <obnox at samba.org>
Date:   Tue Jan 8 22:51:21 2008 +0100

    Fix returns in void functions.
    
    Michael

-----------------------------------------------------------------------

Summary of changes:
 examples/VFS/skel_opaque.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c
index c095a15..8c05479 100644
--- a/examples/VFS/skel_opaque.c
+++ b/examples/VFS/skel_opaque.c
@@ -92,7 +92,7 @@ static SMB_STRUCT_DIRENT *skel_readdir(vfs_handle_struct *handle,  SMB_STRUCT_DI
 
 static void skel_seekdir(vfs_handle_struct *handle,  SMB_STRUCT_DIR *dirp, long offset)
 {
-	return vfswrap_seekdir(NULL,  dirp, offset);
+	vfswrap_seekdir(NULL,  dirp, offset);
 }
 
 static long skel_telldir(vfs_handle_struct *handle,  SMB_STRUCT_DIR *dirp)
@@ -102,7 +102,7 @@ static long skel_telldir(vfs_handle_struct *handle,  SMB_STRUCT_DIR *dirp)
 
 static void skel_rewinddir(vfs_handle_struct *handle,  SMB_STRUCT_DIR *dirp)
 {
-	return vfswrap_rewinddir(NULL,  dirp);
+	vfswrap_rewinddir(NULL,  dirp);
 }
 
 static int skel_mkdir(vfs_handle_struct *handle,  const char *path, mode_t mode)


-- 
Samba Shared Repository


More information about the samba-cvs mailing list