X-Git-Url: https://git.octo.it/?p=git.git;a=blobdiff_plain;f=upload-pack.c;h=979e58306e46e5fdc005feb9d5a1bf44490fb5c1;hp=47560c9527b9c17db34f10e78d7c1f0d99b746e1;hb=HEAD;hpb=cf1e6d1ec55264272be8b7f0c276a069d2aac69a diff --git a/upload-pack.c b/upload-pack.c index 47560c95..979e5830 100644 --- a/upload-pack.c +++ b/upload-pack.c @@ -105,7 +105,7 @@ static int got_sha1(char *hex, unsigned char *sha1) o = parse_object(sha1); if (!o) die("oops (%s)", sha1_to_hex(sha1)); - if (o->type == commit_type) { + if (o->type == TYPE_COMMIT) { struct commit_list *parents; if (o->flags & THEY_HAVE) return 0; @@ -234,7 +234,7 @@ static int send_ref(const char *refname, const unsigned char *sha1) o->flags |= OUR_REF; nr_our_refs++; } - if (o->type == tag_type) { + if (o->type == TYPE_TAG) { o = deref_tag(o, refname, 0); packet_write(1, "%s %s^{}\n", sha1_to_hex(o->sha1), refname); }