summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_default.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-03-28 13:04:03 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-04-05 02:39:09 +0200
commit900473a45b90c44e5f301feae42f821214228e27 (patch)
treee2e5d94f7c7b5f93a812d0320d954235e74bb440 /source3/modules/vfs_default.c
parentafdb78075c29774c550625e1115ffb7eaf6e015a (diff)
downloadsamba-900473a45b90c44e5f301feae42f821214228e27.tar.gz
samba-900473a45b90c44e5f301feae42f821214228e27.tar.bz2
samba-900473a45b90c44e5f301feae42f821214228e27.zip
build: Remove sys_seekdir 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 f64bbcb526..e9ff7cb8bc 100644
--- a/source3/modules/vfs_default.c
+++ b/source3/modules/vfs_default.c
@@ -386,7 +386,7 @@ static SMB_STRUCT_DIRENT *vfswrap_readdir(vfs_handle_struct *handle,
static void vfswrap_seekdir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, long offset)
{
START_PROFILE(syscall_seekdir);
- sys_seekdir(dirp, offset);
+ seekdir(dirp, offset);
END_PROFILE(syscall_seekdir);
}