main: remove `O_EXCL` for wd-file since creation is now managed by wrapper

Signed-off-by: Yury V. Zaytsev <yury@shurup.com>
This commit is contained in:
Yury V. Zaytsev 2024-09-02 16:51:17 +02:00
parent a3ce493ae2
commit d081bc68aa
1 changed files with 1 additions and 2 deletions

View File

@ -509,8 +509,7 @@ main (int argc, char *argv[])
{
int last_wd_fd;
last_wd_fd = open (mc_args__last_wd_file, O_WRONLY | O_CREAT | O_TRUNC | O_EXCL,
S_IRUSR | S_IWUSR);
last_wd_fd = open (mc_args__last_wd_file, O_WRONLY | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);
if (last_wd_fd != -1)
{
ssize_t ret1;