From 06c7ec8485c449dbcff7ea4f24ecce068fdab44c Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 8 Apr 1999 03:01:18 +0000 Subject: Forgot about closedir() function for VFS. Hoo embarassing. (This used to be commit c1cbe07c0391c36066b068fdd42bf1aa40259a5c) --- source3/smbd/vfs-wrap.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source3/smbd/vfs-wrap.c') 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) -- cgit