From 99f36944364016c33cc63f6be509fa22b7bba619 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 15 Jan 2001 17:46:02 +0000 Subject: Compile fix for smbw_dir_add function. (This used to be commit d7920a670b7706fc1d794edcfe6baacc5bb26403) --- source3/smbwrapper/smbw_dir.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'source3/smbwrapper') 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); } -- cgit