mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
00df20a7ab
The fsmonitor_ipc__get_path() function ignores its repository argument. It should use it when constructing repo paths (though in practice, it is unlikely anything but the_repository is ever passed, so this is cleanup and future proofing, not a bug fix). Note that despite the lack of "dup" in the name, repo_git_path() behaves like git_pathdup() and returns an allocated string. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
11 lines
251 B
C
11 lines
251 B
C
#include "git-compat-util.h"
|
|
#include "config.h"
|
|
#include "fsmonitor-ipc.h"
|
|
#include "path.h"
|
|
|
|
const char *fsmonitor_ipc__get_path(struct repository *r) {
|
|
static char *ret;
|
|
if (!ret)
|
|
ret = repo_git_path(r, "fsmonitor--daemon.ipc");
|
|
return ret;
|
|
}
|