diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-03 13:06:36 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-03 13:06:36 -0700 |
commit | dade09c2269ec2117df085e8a99efcabccf08c53 (patch) | |
tree | 19a955699fed7c7608bbe1c3176720655e9f9fd7 | |
parent | Make git-fsck-cache check HEAD integrity (diff) | |
download | tgif-dade09c2269ec2117df085e8a99efcabccf08c53.tar.xz |
Add "has_sha1_pack()" function to query whether the object is available in a pack
We'll want this for incremental packing.
-rw-r--r-- | cache.h | 1 | ||||
-rw-r--r-- | sha1_file.c | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -176,6 +176,7 @@ extern int read_tree(void *buffer, unsigned long size, int stage); extern int write_sha1_from_fd(const unsigned char *sha1, int fd); +extern int has_sha1_pack(const unsigned char *sha1); extern int has_sha1_file(const unsigned char *sha1); /* Convert to/from hex/sha1 representation */ 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; |