aboutsummaryrefslogtreecommitdiffstats
path: root/packfile.c
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2018-05-02 00:25:33 +0000
committerJunio C Hamano <gitster@pobox.com>2018-05-02 13:59:49 +0900
commit14c3c80c81418e00ee990a88f526ac851411f422 (patch)
tree31c3912c6769a4666d80e368cb1280ab4426b0fa /packfile.c
parentpackfile: remove unused member from struct pack_entry (diff)
downloadgit-14c3c80c81418e00ee990a88f526ac851411f422.tar.xz
git-14c3c80c81418e00ee990a88f526ac851411f422.zip
packfile: convert has_sha1_pack to object_id
Convert this function to take a pointer to struct object_id and rename it has_object_pack for consistency with has_object_file. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'packfile.c')
-rw-r--r--packfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packfile.c b/packfile.c
index 5c219d0229f..e65f9436645 100644
--- a/packfile.c
+++ b/packfile.c
@@ -1854,10 +1854,10 @@ int find_pack_entry(struct repository *r, const unsigned char *sha1, struct pack
return 0;
}
-int has_sha1_pack(const unsigned char *sha1)
+int has_object_pack(const struct object_id *oid)
{
struct pack_entry e;
- return find_pack_entry(the_repository, sha1, &e);
+ return find_pack_entry(the_repository, oid->hash, &e);
}
int has_pack_index(const unsigned char *sha1)