mirror of
https://github.com/samba-team/samba.git
synced 2024-12-31 17:18:04 +03:00
Always do a compile before CVS commit! )-:
This commit is contained in:
parent
c1cbe07c03
commit
0f37e900fa
@ -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…
Reference in New Issue
Block a user