Compile fix for smbw_dir_add function.
authorTim Potter <tpot@samba.org>
Mon, 15 Jan 2001 17:46:02 +0000 (17:46 +0000)
committerTim Potter <tpot@samba.org>
Mon, 15 Jan 2001 17:46:02 +0000 (17:46 +0000)
(This used to be commit d7920a670b7706fc1d794edcfe6baacc5bb26403)

source3/smbwrapper/smbw_dir.c

index 89d137473f3b45f0c2ca189cee44b7d1f25f4f48..d94ea6ec87ca7dc13a68e9b0f99c9354b6941b81 100644 (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);
 }