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:
parent
929b9ce3fa
commit
5473800c32
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue