diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2017-08-18 15:20:36 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-08-23 15:12:07 -0700 |
commit | 150e3001d0c5cc69db72a10f3e0cd1e14f11acba (patch) | |
tree | 9ce033e4fa202c7843233b1245806bd5d7523f0d /packfile.c | |
parent | 1a1e5d4f47fd77dec1b7e7ef0867939a251252b6 (diff) | |
download | git-150e3001d0c5cc69db72a10f3e0cd1e14f11acba.tar.gz |
pack: move has_sha1_pack()
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'packfile.c')
-rw-r--r-- | packfile.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packfile.c b/packfile.c index 22bdbbcf2c..322c43d74a 100644 --- a/packfile.c +++ b/packfile.c @@ -1840,3 +1840,9 @@ int find_pack_entry(const unsigned char *sha1, struct pack_entry *e) } return 0; } + +int has_sha1_pack(const unsigned char *sha1) +{ + struct pack_entry e; + return find_pack_entry(sha1, &e); +} |