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 /sha1_file.c | |
parent | c33303839c76c41c9f85e5bd3f7b04fab60c38ca (diff) | |
download | git-dade09c2269ec2117df085e8a99efcabccf08c53.tar.gz git-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.
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sha1_file.c b/sha1_file.c index b18e467d8..8f20e2f82 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; |