diff --git a/source3/include/proto.h b/source3/include/proto.h index 0033e643c197..c8db7bd02c92 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -338,7 +338,6 @@ int sys_posix_fallocate(int fd, SMB_OFF_T offset, SMB_OFF_T len); int sys_fallocate(int fd, enum vfs_fallocate_mode mode, SMB_OFF_T offset, SMB_OFF_T len); void kernel_flock(int fd, uint32 share_mode, uint32 access_mask); SMB_STRUCT_DIR *sys_fdopendir(int fd); -void sys_seekdir(SMB_STRUCT_DIR *dirp, long offset); long sys_telldir(SMB_STRUCT_DIR *dirp); void sys_rewinddir(SMB_STRUCT_DIR *dirp); int sys_closedir(SMB_STRUCT_DIR *dirp); diff --git a/source3/lib/system.c b/source3/lib/system.c index 6b778c61c06f..7a2e1bc38ceb 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -633,15 +633,6 @@ SMB_STRUCT_DIR *sys_fdopendir(int fd) #endif } -/******************************************************************* - A seekdir wrapper. -********************************************************************/ - -void sys_seekdir(SMB_STRUCT_DIR *dirp, long offset) -{ - seekdir(dirp, offset); -} - /******************************************************************* A telldir wrapper. ********************************************************************/ diff --git a/source3/modules/onefs_dir.c b/source3/modules/onefs_dir.c index 808f6fb04700..da60ff388edf 100644 --- a/source3/modules/onefs_dir.c +++ b/source3/modules/onefs_dir.c @@ -416,7 +416,7 @@ onefs_seekdir(vfs_handle_struct *handle, SMB_STRUCT_DIR *dirp, long offset) if (!lp_parm_bool(SNUM(handle->conn), PARM_ONEFS_TYPE, PARM_USE_READDIRPLUS, PARM_USE_READDIRPLUS_DEFAULT)) { - return sys_seekdir(dirp, offset); + return seekdir(dirp, offset); } /* Validate inputs */ diff --git a/source3/modules/vfs_default.c b/source3/modules/vfs_default.c index f64bbcb5266e..e9ff7cb8bc3b 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); }