summaryrefslogtreecommitdiff
path: root/refs
diff options
context:
space:
mode:
authorMartin Ågren <martin.agren@gmail.com>2021-01-05 19:23:49 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-01-06 21:53:32 (GMT)
commit7f0dc7998be01371c99517dc616421239405476c (patch)
treef0a60433b2ac50b4be8860490323a7f5f12fa3b5 /refs
parentacd7160201ae908d3e0fccee19685ab19b1be720 (diff)
downloadgit-7f0dc7998be01371c99517dc616421239405476c.zip
git-7f0dc7998be01371c99517dc616421239405476c.tar.gz
git-7f0dc7998be01371c99517dc616421239405476c.tar.bz2
refs/files-backend: don't peek into `struct lock_file`
Similar to the previous commits, avoid peeking into the `struct lock_file`. Use the lock file API instead. Note how we obtain the path to the lock file if `fdopen_lock_file()` failed and that this is not a problem: as documented in lockfile.h, failure to "fdopen" does not roll back the lock file and we're free to, e.g., query it for its path. Signed-off-by: Martin Ågren <martin.agren@gmail.com> Reviewed-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs')
-rw-r--r--refs/files-backend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/refs/files-backend.c b/refs/files-backend.c
index 04e85e7..4fdc688 100644
--- a/refs/files-backend.c
+++ b/refs/files-backend.c
@@ -1824,12 +1824,12 @@ static int create_symref_locked(struct files_ref_store *refs,
if (!fdopen_lock_file(&lock->lk, "w"))
return error("unable to fdopen %s: %s",
- lock->lk.tempfile->filename.buf, strerror(errno));
+ get_lock_file_path(&lock->lk), strerror(errno));
update_symref_reflog(refs, lock, refname, target, logmsg);
/* no error check; commit_ref will check ferror */
- fprintf(lock->lk.tempfile->fp, "ref: %s\n", target);
+ fprintf(get_lock_file_fp(&lock->lk), "ref: %s\n", target);
if (commit_ref(lock) < 0)
return error("unable to write symref for %s: %s", refname,
strerror(errno));