diff options
author | Volker Lendecke <vl@samba.org> | 2009-07-19 02:32:44 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-07-19 02:36:59 +0200 |
commit | ce378e7c51913c1b110e62dc35c205d8d2fad58a (patch) | |
tree | 1888c8cf4ecc81e390fa49d77ecb9aa3ae24adef /source3/modules/vfs_catia.c | |
parent | 27087e6a878aa216d73ea629535be49fca10315f (diff) | |
download | samba-ce378e7c51913c1b110e62dc35c205d8d2fad58a.tar.gz |
Fix a few type errors in VFS modules
Diffstat (limited to 'source3/modules/vfs_catia.c')
-rw-r--r-- | source3/modules/vfs_catia.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/modules/vfs_catia.c b/source3/modules/vfs_catia.c index 1fd101282cd..3b691c03503 100644 --- a/source3/modules/vfs_catia.c +++ b/source3/modules/vfs_catia.c @@ -103,7 +103,8 @@ static SMB_STRUCT_DIR *catia_opendir(vfs_handle_struct *handle, } static SMB_STRUCT_DIRENT *catia_readdir(vfs_handle_struct *handle, - SMB_STRUCT_DIR *dirp) + SMB_STRUCT_DIR *dirp, + SMB_STRUCT_STAT *sbuf) { SMB_STRUCT_DIRENT *result = NULL; SMB_STRUCT_DIRENT *newdirent = NULL; |