Signed-off-by: Jonathan Tan <jonathantanmy@xxxxxxxxxx> --- builtin/prune-packed.c | 1 + cache.h | 2 -- diff.c | 1 + pack.h | 2 ++ packfile.c | 6 ++++++ revision.c | 1 + sha1_file.c | 6 ------ 7 files changed, 11 insertions(+), 8 deletions(-) diff --git a/builtin/prune-packed.c b/builtin/prune-packed.c index ac978ad40..79130aa2e 100644 --- a/builtin/prune-packed.c +++ b/builtin/prune-packed.c @@ -2,6 +2,7 @@ #include "cache.h" #include "progress.h" #include "parse-options.h" +#include "pack.h" static const char * const prune_packed_usage[] = { N_("git prune-packed [-n | --dry-run] [-q | --quiet]"), diff --git a/cache.h b/cache.h index 06a8caae6..d96d36d50 100644 --- a/cache.h +++ b/cache.h @@ -1190,8 +1190,6 @@ extern int check_sha1_signature(const unsigned char *sha1, void *buf, unsigned l extern int finalize_object_file(const char *tmpfile, const char *filename); -extern int has_sha1_pack(const unsigned char *sha1); - /* * Open the loose object at path, check its sha1, and return the contents, * type, and size. If the object is a blob, then "contents" may return NULL, diff --git a/diff.c b/diff.c index 85e714f6c..6bbc46326 100644 --- a/diff.c +++ b/diff.c @@ -20,6 +20,7 @@ #include "string-list.h" #include "argv-array.h" #include "graph.h" +#include "pack.h" #ifdef NO_FAST_WORKING_DIRECTORY #define FAST_WORKING_DIRECTORY 0 diff --git a/pack.h b/pack.h index 1021a781c..ce0e15deb 100644 --- a/pack.h +++ b/pack.h @@ -223,4 +223,6 @@ extern struct packed_git *find_sha1_pack(const unsigned char *sha1, extern int find_pack_entry(const unsigned char *sha1, struct pack_entry *e); +extern int has_sha1_pack(const unsigned char *sha1); + #endif diff --git a/packfile.c b/packfile.c index 0f1e3338b..507f65236 100644 --- a/packfile.c +++ b/packfile.c @@ -1849,3 +1849,9 @@ int find_pack_entry(const unsigned char *sha1, struct pack_entry *e) } return 0; } + +int has_sha1_pack(const unsigned char *sha1) +{ + struct pack_entry e; + return find_pack_entry(sha1, &e); +} diff --git a/revision.c b/revision.c index 6603af944..2868c4fc8 100644 --- a/revision.c +++ b/revision.c @@ -19,6 +19,7 @@ #include "dir.h" #include "cache-tree.h" #include "bisect.h" +#include "pack.h" volatile show_early_output_fn_t show_early_output; diff --git a/sha1_file.c b/sha1_file.c index 1a505eae5..2610ea057 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -1629,12 +1629,6 @@ int has_pack_index(const unsigned char *sha1) return 1; } -int has_sha1_pack(const unsigned char *sha1) -{ - struct pack_entry e; - return find_pack_entry(sha1, &e); -} - int has_sha1_file_with_flags(const unsigned char *sha1, int flags) { if (!startup_info->have_repository) -- 2.14.0.434.g98096fd7a8-goog