forked from len0rd/rockbox
Fix permissions of directories created in the sim.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8726 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
55c98cf66d
commit
1064f019b8
1 changed files with 1 additions and 1 deletions
|
|
@ -192,7 +192,7 @@ int sim_mkdir(const char *name, mode_t mode)
|
|||
/* since we build with -DNOCYGWIN we have the plain win32 version */
|
||||
return mkdir(buffer);
|
||||
#else
|
||||
return mkdir(buffer, 0666);
|
||||
return mkdir(buffer, 0777);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue