mirror of
https://github.com/git/git.git
synced 2024-11-24 10:26:17 +08:00
sha1_file.c: remove unused function
has_pack_file() is not used anywhere. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
42b3b00614
commit
356521ab22
1
cache.h
1
cache.h
@ -683,7 +683,6 @@ extern int has_sha1_pack(const unsigned char *sha1);
|
||||
extern int has_sha1_file(const unsigned char *sha1);
|
||||
extern int has_loose_object_nonlocal(const unsigned char *sha1);
|
||||
|
||||
extern int has_pack_file(const unsigned char *sha1);
|
||||
extern int has_pack_index(const unsigned char *sha1);
|
||||
|
||||
extern const signed char hexval_table[256];
|
||||
|
@ -2458,14 +2458,6 @@ int has_pack_index(const unsigned char *sha1)
|
||||
return 1;
|
||||
}
|
||||
|
||||
int has_pack_file(const unsigned char *sha1)
|
||||
{
|
||||
struct stat st;
|
||||
if (stat(sha1_pack_name(sha1), &st))
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
int has_sha1_pack(const unsigned char *sha1)
|
||||
{
|
||||
struct pack_entry e;
|
||||
|
Loading…
Reference in New Issue
Block a user