From 2320b2144fcb1236c082278444e3c6df998e17ec Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 28 Mar 2012 13:18:14 +1100 Subject: build: Remove SMB_STRUCT_DIRENT define --- examples/VFS/skel_opaque.c | 2 +- examples/VFS/skel_transparent.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/VFS/skel_opaque.c b/examples/VFS/skel_opaque.c index 5c97e2304e..8a2c8e86c5 100644 --- a/examples/VFS/skel_opaque.c +++ b/examples/VFS/skel_opaque.c @@ -99,7 +99,7 @@ static SMB_STRUCT_DIR *skel_fdopendir(vfs_handle_struct *handle, files_struct *f return NULL; } -static SMB_STRUCT_DIRENT *skel_readdir(vfs_handle_struct *handle, +static struct dirent *skel_readdir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, SMB_STRUCT_STAT *sbuf) { diff --git a/examples/VFS/skel_transparent.c b/examples/VFS/skel_transparent.c index c57545c2e5..2c28223214 100644 --- a/examples/VFS/skel_transparent.c +++ b/examples/VFS/skel_transparent.c @@ -96,7 +96,7 @@ static SMB_STRUCT_DIR *skel_fdopendir(vfs_handle_struct *handle, files_struct *f return SMB_VFS_NEXT_FDOPENDIR(handle, fsp, mask, attr); } -static SMB_STRUCT_DIRENT *skel_readdir(vfs_handle_struct *handle, +static struct dirent *skel_readdir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, SMB_STRUCT_STAT *sbuf) { -- cgit