1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-29 11:21:54 +03:00

#ifdef'ed out functions obsoleted by VFS:

dos_opendir
	dos_readdirname
	dos_file_exist

Added warning comments to dos_mkdir() as it's used in client code.
This commit is contained in:
Tim Potter 0001-01-01 00:00:00 +00:00
parent db60aa209c
commit 666afcdf1d

View File

@ -52,18 +52,23 @@ int dos_open(char *fname,int flags,mode_t mode)
} }
/******************************************************************* /*******************************************************************
Opendir() wrapper that calls dos_to_unix. Opendir() wrapper that calls dos_to_unix. Should use the
vfs_ops->opendir() function instead.
********************************************************************/ ********************************************************************/
#if 0
DIR *dos_opendir(char *dname) DIR *dos_opendir(char *dname)
{ {
return(opendir(dos_to_unix(dname,False))); return(opendir(dos_to_unix(dname,False)));
} }
#endif
/******************************************************************* /*******************************************************************
Readdirname() wrapper that calls unix_to_dos. Readdirname() wrapper that calls unix_to_dos. Should use the
vfs_readdirname() function instead.
********************************************************************/ ********************************************************************/
#if 0
char *dos_readdirname(DIR *p) char *dos_readdirname(DIR *p)
{ {
char *dname = readdirname(p); char *dname = readdirname(p);
@ -74,6 +79,7 @@ char *dos_readdirname(DIR *p)
unix_to_dos(dname, True); unix_to_dos(dname, True);
return(dname); return(dname);
} }
#endif
/******************************************************************* /*******************************************************************
A stat() wrapper that calls dos_to_unix. A stat() wrapper that calls dos_to_unix.
@ -94,7 +100,9 @@ int dos_lstat(char *fname,SMB_STRUCT_STAT *sbuf)
} }
/******************************************************************* /*******************************************************************
Mkdir() that calls dos_to_unix. Mkdir() that calls dos_to_unix. Don't use this call unless you
really want to access a file on disk. Use the vfs_ops.mkdir()
function instead.
********************************************************************/ ********************************************************************/
int dos_mkdir(char *dname,mode_t mode) int dos_mkdir(char *dname,mode_t mode)
@ -266,13 +274,15 @@ char *dos_getwd(char *unix_path)
} }
/******************************************************************* /*******************************************************************
Check if a DOS file exists. Check if a DOS file exists. Use vfs_file_exist function instead.
********************************************************************/ ********************************************************************/
#if 0
BOOL dos_file_exist(char *fname,SMB_STRUCT_STAT *sbuf) BOOL dos_file_exist(char *fname,SMB_STRUCT_STAT *sbuf)
{ {
return file_exist(dos_to_unix(fname, False), sbuf); return file_exist(dos_to_unix(fname, False), sbuf);
} }
#endif
/******************************************************************* /*******************************************************************
Check if a DOS directory exists. Check if a DOS directory exists.