From 5473800c3258375eefcbc01673b812914fceeb11 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Tue, 6 Aug 2002 14:21:36 +0000 Subject: [PATCH] fixed/changed permissions for newdirs to rwx------ Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@115 --- src/dos/drive_local.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dos/drive_local.cpp b/src/dos/drive_local.cpp index 670a1651..5b8882f0 100644 --- a/src/dos/drive_local.cpp +++ b/src/dos/drive_local.cpp @@ -182,7 +182,7 @@ bool localDrive::MakeDir(char * dir) { #if defined (WIN32) /* MS Visual C++ */ int temp=mkdir(newdir); #else - int temp=mkdir(newdir,0); + int temp=mkdir(newdir,0700); #endif return (temp==0); }