path: drop git_pathdup() in favor of repo_git_path()
Remove `git_pathdup()` in favor of `repo_git_path()`. The latter does essentially the same, with the only exception that it does not rely on `the_repository` but takes the repo as separate parameter. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
7f17900b5b
commit
bba59f58a4
@@ -197,7 +197,7 @@ static void prepare_note_data(const struct object_id *object, struct note_data *
|
||||
struct strbuf buf = STRBUF_INIT;
|
||||
|
||||
/* write the template message before editing: */
|
||||
d->edit_path = git_pathdup("NOTES_EDITMSG");
|
||||
d->edit_path = repo_git_path(the_repository, "NOTES_EDITMSG");
|
||||
fd = xopen(d->edit_path, O_CREAT | O_TRUNC | O_WRONLY, 0600);
|
||||
|
||||
if (d->msg_nr)
|
||||
|
||||
Reference in New Issue
Block a user