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

This commit is contained in:
colin%theblakes.com 2000-07-06 20:11:38 +00:00
Родитель 138e8760d5
Коммит 48f9742dca
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -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);