diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-03-28 13:18:14 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-05 02:39:09 +0200 |
commit | 2320b2144fcb1236c082278444e3c6df998e17ec (patch) | |
tree | 879bb402bca2d44eba5eb1571b2631c1830e6e72 /source3/smbd | |
parent | 6edd8e95f1ed0ac398c84e4050357097087ae15f (diff) | |
download | samba-2320b2144fcb1236c082278444e3c6df998e17ec.tar.gz samba-2320b2144fcb1236c082278444e3c6df998e17ec.tar.bz2 samba-2320b2144fcb1236c082278444e3c6df998e17ec.zip |
build: Remove SMB_STRUCT_DIRENT define
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/vfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index cbefb40659..cb7d2e4496 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -721,7 +721,7 @@ SMB_OFF_T vfs_transfer_file(files_struct *in, files_struct *out, SMB_OFF_T n) const char *vfs_readdirname(connection_struct *conn, void *p, SMB_STRUCT_STAT *sbuf, char **talloced) { - SMB_STRUCT_DIRENT *ptr= NULL; + struct dirent *ptr= NULL; const char *dname; char *translated; NTSTATUS status; @@ -1405,7 +1405,7 @@ SMB_STRUCT_DIR *smb_vfs_call_fdopendir(struct vfs_handle_struct *handle, return handle->fns->fdopendir_fn(handle, fsp, mask, attributes); } -SMB_STRUCT_DIRENT *smb_vfs_call_readdir(struct vfs_handle_struct *handle, +struct dirent *smb_vfs_call_readdir(struct vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, SMB_STRUCT_STAT *sbuf) { |