1
0
Fork 0

fixed/changed permissions for newdirs to rwx------

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@115
This commit is contained in:
Peter Veenstra 2002-08-06 14:21:36 +00:00
parent 929b9ce3fa
commit 5473800c32

View file

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