Use VFS operations for file I/O.
authorTim Potter <tpot@samba.org>
Sun, 4 Apr 1999 05:40:28 +0000 (05:40 +0000)
committerTim Potter <tpot@samba.org>
Sun, 4 Apr 1999 05:40:28 +0000 (05:40 +0000)
Changed calls to dos_{opendir,readdir} to vfs_{opendir,readdir}
equivalents.

source/smbd/dir.c

index dcf1d158b4c3693c37104ec9004c54336a24812f..52d271e284bc4a26fe392af055048125ff736538 100644 (file)
@@ -470,7 +470,7 @@ BOOL get_dir_entry(connection_struct *conn,char *mask,int dirtype,char *fname,
          pstrcpy(pathreal,path);
          pstrcat(path,fname);
          pstrcat(pathreal,dname);
-         if (dos_stat(pathreal,&sbuf) != 0) 
+         if (conn->vfs_ops.stat(dos_to_unix(pathreal, False), &sbuf) != 0) 
            {
              DEBUG(5,("Couldn't stat 1 [%s]\n",path));
              continue;
@@ -518,7 +518,7 @@ void *OpenDir(connection_struct *conn, char *name, BOOL use_veto)
 {
   Dir *dirp;
   char *n;
-  DIR *p = dos_opendir(name);
+  DIR *p = conn->vfs_ops.opendir(name);
   int used=0;
 
   if (!p) return(NULL);
@@ -530,7 +530,7 @@ void *OpenDir(connection_struct *conn, char *name, BOOL use_veto)
   dirp->pos = dirp->numentries = dirp->mallocsize = 0;
   dirp->data = dirp->current = NULL;
 
-  while ((n = dos_readdirname(p)))
+  while ((n = vfs_readdirname(conn, p)))
   {
     int l = strlen(n)+1;