From 5a93fe8776b5467c0a355427b28f49386d94d433 Mon Sep 17 00:00:00 2001 From: "colin%theblakes.com" Date: Thu, 6 Jul 2000 20:11:38 +0000 Subject: [PATCH] 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 --- mozilla/xpcom/io/nsLocalFileUnix.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mozilla/xpcom/io/nsLocalFileUnix.cpp b/mozilla/xpcom/io/nsLocalFileUnix.cpp index eadaaf6d90e..95bea30a812 100644 --- a/mozilla/xpcom/io/nsLocalFileUnix.cpp +++ b/mozilla/xpcom/io/nsLocalFileUnix.cpp @@ -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);