summaryrefslogtreecommitdiff
path: root/transport.c
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2017-05-01 02:28:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-05-02 01:46:41 (GMT)
commitb8607f35b180a00b3f3240ff7d26d034a83fb23a (patch)
treed3a675540509817138c652f49ce8855c6b696627 /transport.c
parentaf6730e7303d3025a8f50192e0f54acc74142484 (diff)
downloadgit-b8607f35b180a00b3f3240ff7d26d034a83fb23a.zip
git-b8607f35b180a00b3f3240ff7d26d034a83fb23a.tar.gz
git-b8607f35b180a00b3f3240ff7d26d034a83fb23a.tar.bz2
bundle: convert to struct object_id
Convert the bundle code, plus the sole external user of struct ref_list_entry, to use struct object_id. Include cache.h from within bundle.h to provide the definition. Convert some of the hash parsing code to use parse_oid_hex to avoid needing to hard-code constant values. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'transport.c')
-rw-r--r--transport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/transport.c b/transport.c
index 4d33138..9bfcf87 100644
--- a/transport.c
+++ b/transport.c
@@ -87,7 +87,7 @@ static struct ref *get_refs_from_bundle(struct transport *transport, int for_pus
for (i = 0; i < data->header.references.nr; i++) {
struct ref_list_entry *e = data->header.references.list + i;
struct ref *ref = alloc_ref(e->name);
- hashcpy(ref->old_oid.hash, e->sha1);
+ oidcpy(&ref->old_oid, &e->oid);
ref->next = result;
result = ref;
}