1
0
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:
Tim Potter 1999-04-08 03:13:33 +00:00
parent 06c7ec8485
commit ab0d0a6f4e
2 changed files with 2 additions and 1 deletions

View File

@ -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);

View File

@ -70,7 +70,7 @@ int vfswrap_closedir(DIR *dirp)
{
int result;
result = closedir(path);
result = closedir(dirp);
return result;
}