1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

Compile fix for smbw_dir_add function.

(This used to be commit d7920a670b7706fc1d794edcfe6baacc5bb26403)
This commit is contained in:
Tim Potter 2001-01-15 17:46:02 +00:00
parent fc06a034e8
commit 99f3694436

View File

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