X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=refs.c;h=161018097def05f717ae20e59e3df6cc1b01ab77;hb=edde7a8b5324d88f07fcb8204da313c19b4988fa;hp=6ca04d3b0fb4b9c40e816820309fd879ffc1d40b;hpb=bbca20accefe8329f976371d0d8c111c965cdf1a;p=git.git diff --git a/refs.c b/refs.c index 6ca04d3b..16101809 100644 --- a/refs.c +++ b/refs.c @@ -3,10 +3,10 @@ #include -static int read_ref(const char *path, unsigned char *sha1) +static int read_ref(const char *refname, unsigned char *sha1) { int ret = -1; - int fd = open(path, O_RDONLY); + int fd = open(git_path("%s", refname), O_RDONLY); if (fd >= 0) { char buffer[60]; @@ -20,7 +20,7 @@ static int read_ref(const char *path, unsigned char *sha1) static int do_for_each_ref(const char *base, int (*fn)(const char *path, const unsigned char *sha1)) { int retval = 0; - DIR *dir = opendir(base); + DIR *dir = opendir(git_path("%s", base)); if (dir) { struct dirent *de; @@ -46,7 +46,7 @@ static int do_for_each_ref(const char *base, int (*fn)(const char *path, const u if (namelen > 255) continue; memcpy(path + baselen, de->d_name, namelen+1); - if (lstat(path, &st) < 0) + if (stat(git_path("%s", path), &st) < 0) continue; if (S_ISDIR(st.st_mode)) { retval = do_for_each_ref(path, fn); @@ -71,15 +71,14 @@ static int do_for_each_ref(const char *base, int (*fn)(const char *path, const u int head_ref(int (*fn)(const char *path, const unsigned char *sha1)) { unsigned char sha1[20]; - const char *headpath = git_path("HEAD"); - if (!read_ref(headpath, sha1)) - fn(headpath, sha1); - return do_for_each_ref(get_refs_directory(), fn); + if (!read_ref("HEAD", sha1)) + return fn("HEAD", sha1); + return 0; } int for_each_ref(int (*fn)(const char *path, const unsigned char *sha1)) { - return do_for_each_ref(get_refs_directory(), fn); + return do_for_each_ref("refs", fn); } static char *ref_file_name(const char *ref)