refs/files-backend: remove unused open mode parameter
We only need to provide a mode if we are willing to let open(2) create the file, which is not the case here, so drop the unnecessary parameter. Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
225bc32a98
commit
35cf94eaf6
@ -1569,7 +1569,7 @@ static int log_ref_setup(struct files_ref_store *refs,
|
||||
goto error;
|
||||
}
|
||||
} else {
|
||||
*logfd = open(logfile, O_APPEND | O_WRONLY, 0666);
|
||||
*logfd = open(logfile, O_APPEND | O_WRONLY);
|
||||
if (*logfd < 0) {
|
||||
if (errno == ENOENT || errno == EISDIR) {
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user