mirror of
https://github.com/samba-team/samba.git
synced 2025-03-11 16:58:40 +03:00
Always do a compile before CVS commit! )-:
(This used to be commit 0f37e900fa0744573754796916abf967fee05ea2)
This commit is contained in:
parent
06c7ec8485
commit
ab0d0a6f4e
@ -3338,6 +3338,7 @@ DIR *vfswrap_opendir(char *fname);
|
||||
struct dirent *vfswrap_readdir(DIR *dirp);
|
||||
int vfswrap_mkdir(char *path, mode_t mode);
|
||||
int vfswrap_rmdir(char *path);
|
||||
int vfswrap_closedir(DIR *dirp);
|
||||
int vfswrap_open(char *fname, int flags, mode_t mode);
|
||||
int vfswrap_close(int fd);
|
||||
ssize_t vfswrap_read(int fd, char *data, size_t n);
|
||||
|
@ -70,7 +70,7 @@ int vfswrap_closedir(DIR *dirp)
|
||||
{
|
||||
int result;
|
||||
|
||||
result = closedir(path);
|
||||
result = closedir(dirp);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user