diff options
author | Tim Potter <tpot@samba.org> | 1999-04-08 03:01:18 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 1999-04-08 03:01:18 +0000 |
commit | 06c7ec8485c449dbcff7ea4f24ecce068fdab44c (patch) | |
tree | e5a706b3bec92ae67b24239e6e93ed45bf19b241 /source3/include | |
parent | bc40376caa1e828b9e739cd94e46387e0eaf7652 (diff) | |
download | samba-06c7ec8485c449dbcff7ea4f24ecce068fdab44c.tar.gz samba-06c7ec8485c449dbcff7ea4f24ecce068fdab44c.tar.bz2 samba-06c7ec8485c449dbcff7ea4f24ecce068fdab44c.zip |
Forgot about closedir() function for VFS. Hoo embarassing.
(This used to be commit c1cbe07c0391c36066b068fdd42bf1aa40259a5c)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index aa1f743996..29c119df95 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -629,6 +629,7 @@ struct vfs_ops { struct dirent *(*readdir)(DIR *dirp); int (*mkdir)(char *path, mode_t mode); int (*rmdir)(char *path); + int (*closedir)(DIR *dir); /* File operations */ |