Make this function conform to the naming convention established in
65385ef7d4 for the rest of the refs.c file.

Signed-off-by: Michael Haggerty <mhag...@alum.mit.edu>
---
 refs.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/refs.c b/refs.c
index 6c7f92c..16c237c 100644
--- a/refs.c
+++ b/refs.c
@@ -2001,7 +2001,7 @@ static int do_not_prune(int flags)
        return (flags & (REF_ISSYMREF|REF_ISPACKED));
 }
 
-static int pack_one_ref(const char *path, const unsigned char *sha1,
+static int pack_one_ref(const char *refname, const unsigned char *sha1,
                          int flags, void *cb_data)
 {
        struct pack_refs_cb_data *cb = cb_data;
@@ -2011,27 +2011,27 @@ static int pack_one_ref(const char *path, const 
unsigned char *sha1,
        /* Do not pack the symbolic refs */
        if ((flags & REF_ISSYMREF))
                return 0;
-       is_tag_ref = !prefixcmp(path, "refs/tags/");
+       is_tag_ref = !prefixcmp(refname, "refs/tags/");
 
        /* ALWAYS pack refs that were already packed or are tags */
        if (!(cb->flags & PACK_REFS_ALL) && !is_tag_ref && !(flags & 
REF_ISPACKED))
                return 0;
 
-       fprintf(cb->refs_file, "%s %s\n", sha1_to_hex(sha1), path);
+       fprintf(cb->refs_file, "%s %s\n", sha1_to_hex(sha1), refname);
 
-       o = parse_object_or_die(sha1, path);
+       o = parse_object_or_die(sha1, refname);
        if (o->type == OBJ_TAG) {
-               o = deref_tag(o, path, 0);
+               o = deref_tag(o, refname, 0);
                if (o)
                        fprintf(cb->refs_file, "^%s\n",
                                sha1_to_hex(o->sha1));
        }
 
        if ((cb->flags & PACK_REFS_PRUNE) && !do_not_prune(flags)) {
-               int namelen = strlen(path) + 1;
+               int namelen = strlen(refname) + 1;
                struct ref_to_prune *n = xcalloc(1, sizeof(*n) + namelen);
                hashcpy(n->sha1, sha1);
-               strcpy(n->name, path);
+               strcpy(n->name, refname);
                n->next = cb->ref_to_prune;
                cb->ref_to_prune = n;
        }
-- 
1.8.2.1

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to