summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_default.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-03-28 13:03:00 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-04-05 02:39:09 +0200
commitafdb78075c29774c550625e1115ffb7eaf6e015a (patch)
tree68e98888ad009f9bfaaf97cb62f3ad1d44c3941c /source3/modules/vfs_default.c
parentfe526bb32b7d65be10a05d2525b36f004215b003 (diff)
downloadsamba-afdb78075c29774c550625e1115ffb7eaf6e015a.tar.gz
samba-afdb78075c29774c550625e1115ffb7eaf6e015a.tar.bz2
samba-afdb78075c29774c550625e1115ffb7eaf6e015a.zip
build: Remove sys_readdir wrapper
Diffstat (limited to 'source3/modules/vfs_default.c')
-rw-r--r--source3/modules/vfs_default.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c
index 1c55fe7bbe..f64bbcb526 100644
--- a/source3/modules/vfs_default.c
+++ b/source3/modules/vfs_default.c
@@ -374,7 +374,7 @@ static SMB_STRUCT_DIRENT *vfswrap_readdir(vfs_handle_struct *handle,
SMB_STRUCT_DIRENT *result;
START_PROFILE(syscall_readdir);
- result = sys_readdir(dirp);
+ result = readdir(dirp);
/* Default Posix readdir() does not give us stat info.
* Set to invalid to indicate we didn't return this info. */
if (sbuf)