Fixed new file mode

This commit is contained in:
Łukasz Magiera 2016-01-16 12:41:49 +01:00
parent 57c8b155fe
commit e1e21a193b
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ static int l_fs_open (lua_State *L) {
else if(mode[0] == 'w') m = O_WRONLY | O_CREAT /*| O_DIRECT*/;
else if(mode[0] == 'a') m = O_WRONLY | O_APPEND | O_CREAT /*| O_DIRECT*/;
else return 0;
int fd = open(fname, m, 644);
int fd = open(fname, m, 0644);
if(fd == -1) return 0;
logm("FD ");