Remove VMS specific code; not needed any more. r,a=leaf

git-svn-id: svn://10.0.0.236/trunk@73769 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
colin%theblakes.com
2000-07-06 20:11:38 +00:00
parent 91d89cecaf
commit 5a93fe8776

View File

@@ -379,11 +379,7 @@ nsLocalFile::Create(PRUint32 type, PRUint32 permissions)
int result;
/* use creat(2) for NORMAL_FILE, mkdir(2) for DIRECTORY */
#if defined(VMS)
int (*creationFunc)(const char *, mode_t, ...) =
#else
int (*creationFunc)(const char *, mode_t) =
#endif
type == NORMAL_FILE_TYPE ? exclusive_create : exclusive_mkdir;
result = creationFunc((const char *)mPath, permissions);