diff options
author | Tim Potter <tpot@samba.org> | 1999-04-04 05:40:28 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 1999-04-04 05:40:28 +0000 |
commit | 5051a210619374639121124e32d24217255e992e (patch) | |
tree | 0d8a4f86d0a04f2672248960ac5eec47b4891dcb | |
parent | 20bfa71c951a6e6018aafbd43946d1e0669feacb (diff) | |
download | samba-5051a210619374639121124e32d24217255e992e.tar.gz samba-5051a210619374639121124e32d24217255e992e.tar.xz samba-5051a210619374639121124e32d24217255e992e.zip |
Use VFS operations for file I/O.
Changed calls to dos_{opendir,readdir} to vfs_{opendir,readdir}
equivalents.
-rw-r--r-- | source/smbd/dir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/smbd/dir.c b/source/smbd/dir.c index dcf1d158b4c..52d271e284b 100644 --- a/source/smbd/dir.c +++ b/source/smbd/dir.c @@ -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; |