mirror of
https://github.com/git/git.git
synced 2024-11-24 18:33:43 +08:00
log_ref_write_1(): don't depend on logfile argument
It's unnecessary to pass a strbuf holding the reflog path up and down the call stack now that it is hardly needed by the callers. Remove the places where log_ref_write_1() uses it, in preparation for making it internal to log_ref_setup(). Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Reviewed-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
e404f459fd
commit
87b21e05ed
@ -2838,14 +2838,18 @@ static int log_ref_write_1(const char *refname, const unsigned char *old_sha1,
|
|||||||
result = log_ref_write_fd(logfd, old_sha1, new_sha1,
|
result = log_ref_write_fd(logfd, old_sha1, new_sha1,
|
||||||
git_committer_info(0), msg);
|
git_committer_info(0), msg);
|
||||||
if (result) {
|
if (result) {
|
||||||
strbuf_addf(err, "unable to append to '%s': %s", logfile->buf,
|
int save_errno = errno;
|
||||||
strerror(errno));
|
|
||||||
|
strbuf_addf(err, "unable to append to '%s': %s",
|
||||||
|
git_path("logs/%s", refname), strerror(save_errno));
|
||||||
close(logfd);
|
close(logfd);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (close(logfd)) {
|
if (close(logfd)) {
|
||||||
strbuf_addf(err, "unable to append to '%s': %s", logfile->buf,
|
int save_errno = errno;
|
||||||
strerror(errno));
|
|
||||||
|
strbuf_addf(err, "unable to append to '%s': %s",
|
||||||
|
git_path("logs/%s", refname), strerror(save_errno));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user