summaryrefslogtreecommitdiff
path: root/packfile.c
diff options
context:
space:
mode:
authorLibravatar Jonathan Tan <jonathantanmy@google.com>2017-08-18 15:20:37 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2017-08-23 15:12:07 -0700
commitf9a8672a81277b83cabd59c6705089351c4f3ec4 (patch)
tree35cc126bff3151f8ecc74e3bc96b6318370fa526 /packfile.c
parentpack: move has_sha1_pack() (diff)
downloadtgif-f9a8672a81277b83cabd59c6705089351c4f3ec4.tar.xz
pack: move has_pack_index()
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.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/packfile.c b/packfile.c
index 322c43d74a..84d16bf7e0 100644
--- a/packfile.c
+++ b/packfile.c
@@ -1846,3 +1846,11 @@ int has_sha1_pack(const unsigned char *sha1)
struct pack_entry e;
return find_pack_entry(sha1, &e);
}
+
+int has_pack_index(const unsigned char *sha1)
+{
+ struct stat st;
+ if (stat(sha1_pack_index_name(sha1), &st))
+ return 0;
+ return 1;
+}