diff options
author | Stefan Beller <sbeller@google.com> | 2018-10-17 01:35:33 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-19 09:21:10 +0200 |
commit | 33b94066f27199071abaa4067d29a98bbbbdae11 (patch) | |
tree | c884dec2172508445bc0f23abf6a9e655384ffee /packfile.h | |
parent | sha1_file: allow read_object to read objects in arbitrary repositories (diff) | |
download | git-33b94066f27199071abaa4067d29a98bbbbdae11.tar.xz git-33b94066f27199071abaa4067d29a98bbbbdae11.zip |
packfile: allow has_packed_and_bad to handle arbitrary repositories
has_packed_and_bad is not widely used, so just migrate it all at once.
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'packfile.h')
-rw-r--r-- | packfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packfile.h b/packfile.h index 442625723d..7a62d72231 100644 --- a/packfile.h +++ b/packfile.h @@ -146,7 +146,7 @@ extern int packed_object_info(struct repository *r, off_t offset, struct object_info *); extern void mark_bad_packed_object(struct packed_git *p, const unsigned char *sha1); -extern const struct packed_git *has_packed_and_bad(const unsigned char *sha1); +extern const struct packed_git *has_packed_and_bad(struct repository *r, const unsigned char *sha1); /* * Iff a pack file in the given repository contains the object named by sha1, |