From: Michael Haggerty <mhagger@xxxxxxxxxxxx> Signed-off-by: Michael Haggerty <mhagger@xxxxxxxxxxxx> --- refs.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/refs.c b/refs.c index 11ebc02..0f5aab2 100644 --- a/refs.c +++ b/refs.c @@ -791,7 +791,7 @@ void add_packed_ref(const char *refname, const unsigned char *sha1) /* * Read the loose references for direntry in refs. */ -static void get_ref_dir(struct ref_cache *refs, struct ref_entry *direntry) +static void read_loose_refs(struct ref_cache *refs, struct ref_entry *direntry) { DIR *d; const char *path; @@ -832,9 +832,9 @@ static void get_ref_dir(struct ref_cache *refs, struct ref_entry *direntry) /* Silently ignore. */ } else if (S_ISDIR(st.st_mode)) { strbuf_addch(&refname, '/'); - get_ref_dir(refs, - search_for_subdir(direntry, - refname.buf, 1)); + read_loose_refs(refs, + search_for_subdir(direntry, + refname.buf, 1)); } else { if (*refs->name) { hashclr(sha1); @@ -860,8 +860,8 @@ static struct ref_entry *get_loose_refs(struct ref_cache *refs) { if (!refs->loose) { refs->loose = create_dir_entry(refs, ""); - get_ref_dir(refs, - search_for_subdir(refs->loose, "refs/", 1)); + read_loose_refs(refs, + search_for_subdir(refs->loose, "refs/", 1)); } return refs->loose; } -- 1.7.10 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html