Skip to content

Commit

Permalink
Merge pull request #1864 from horrad/master
Browse files Browse the repository at this point in the history
Fix file creation on OpenBSD
  • Loading branch information
jarun authored Apr 5, 2024
2 parents 22aa145 + 28d993a commit 5853ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nnn.c
Original file line number Diff line number Diff line change
Expand Up @@ -4732,7 +4732,7 @@ static bool xmktree(char *path, bool dir)
return FALSE;
}
} else {
int fd = open(path, O_CREAT | O_TRUNC, S_IWUSR | S_IRUSR); /* Forced create mode for files */
int fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, S_IWUSR | S_IRUSR); /* Forced create mode for files */

if (fd == -1 && errno != EEXIST) {
DPRINTF_S("open!");
Expand Down

0 comments on commit 5853ac8

Please sign in to comment.