summaryrefslogtreecommitdiff
path: root/source3/smbd/vfs-wrap.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/smbd/vfs-wrap.c')
-rw-r--r--source3/smbd/vfs-wrap.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/smbd/vfs-wrap.c b/source3/smbd/vfs-wrap.c
index b3d1a35329..da69b3f006 100644
--- a/source3/smbd/vfs-wrap.c
+++ b/source3/smbd/vfs-wrap.c
@@ -66,6 +66,14 @@ int vfswrap_rmdir(char *path)
return result;
}
+int vfswrap_closedir(DIR *dirp)
+{
+ int result;
+
+ result = closedir(path);
+ return result;
+}
+
/* File operations */
int vfswrap_open(char *fname, int flags, mode_t mode)