aboutsummaryrefslogtreecommitdiffstats
path: root/sha1_file.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2005-07-03 13:06:36 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-03 13:06:36 -0700
commitdade09c2269ec2117df085e8a99efcabccf08c53 (patch)
tree19a955699fed7c7608bbe1c3176720655e9f9fd7 /sha1_file.c
parentc33303839c76c41c9f85e5bd3f7b04fab60c38ca (diff)
downloadgit-dade09c2269ec2117df085e8a99efcabccf08c53.tar.gz
Add "has_sha1_pack()" function to query whether the object is available in a pack
We'll want this for incremental packing.
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sha1_file.c b/sha1_file.c
index b18e467d8c..8f20e2f821 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -1267,6 +1267,12 @@ int write_sha1_from_fd(const unsigned char *sha1, int fd)
return 0;
}
+int has_sha1_pack(const unsigned char *sha1)
+{
+ struct pack_entry e;
+ return find_pack_entry(sha1, &e);
+}
+
int has_sha1_file(const unsigned char *sha1)
{
struct stat st;