diff options
author | Tim Potter <tpot@samba.org> | 2001-01-15 17:46:02 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-01-15 17:46:02 +0000 |
commit | 99f36944364016c33cc63f6be509fa22b7bba619 (patch) | |
tree | f9d5683bc3d5806f8d11ba1d8354914975ec4ae9 /source3/smbwrapper | |
parent | fc06a034e88ebdd0b271078b26e607eca70fcdb0 (diff) | |
download | samba-99f36944364016c33cc63f6be509fa22b7bba619.tar.gz samba-99f36944364016c33cc63f6be509fa22b7bba619.tar.xz samba-99f36944364016c33cc63f6be509fa22b7bba619.zip |
Compile fix for smbw_dir_add function.
(This used to be commit d7920a670b7706fc1d794edcfe6baacc5bb26403)
Diffstat (limited to 'source3/smbwrapper')
-rw-r--r-- | source3/smbwrapper/smbw_dir.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source3/smbwrapper/smbw_dir.c b/source3/smbwrapper/smbw_dir.c index 89d137473f..d94ea6ec87 100644 --- a/source3/smbwrapper/smbw_dir.c +++ b/source3/smbwrapper/smbw_dir.c @@ -78,7 +78,8 @@ static struct smbw_dir *cur_dir; /***************************************************** add a entry to a directory listing *******************************************************/ -static void smbw_dir_add(struct file_info *finfo, const char *mask, void * NULL) +static void smbw_dir_add(struct file_info *finfo, const char *mask, + void *state) { DEBUG(5,("%s\n", finfo->name)); @@ -112,7 +113,7 @@ static void smbw_share_add(const char *share, uint32 type, pstrcpy(finfo.name, share); finfo.mode = aRONLY | aDIR; - smbw_dir_add(&finfo, NULL); + smbw_dir_add(&finfo, NULL, NULL); } @@ -129,7 +130,7 @@ static void smbw_server_add(const char *name, uint32 type, pstrcpy(finfo.name, name); finfo.mode = aRONLY | aDIR; - smbw_dir_add(&finfo, NULL); + smbw_dir_add(&finfo, NULL, NULL); } @@ -151,7 +152,7 @@ static void smbw_printjob_add(struct print_job_info *job) finfo.mode = aRONLY; finfo.size = job->size; - smbw_dir_add(&finfo, NULL); + smbw_dir_add(&finfo, NULL, NULL); } |