mirror of
https://github.com/git/git.git
synced 2026-01-10 01:56:42 +00:00
packfile: convert has_sha1_pack to object_id
Convert this function to take a pointer to struct object_id and rename it has_object_pack for consistency with has_object_file. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
c51c39418b
commit
14c3c80c81
@@ -25,7 +25,7 @@ static int prune_object(const struct object_id *oid, const char *path,
|
||||
{
|
||||
int *opts = data;
|
||||
|
||||
if (!has_sha1_pack(oid->hash))
|
||||
if (!has_object_pack(oid))
|
||||
return 0;
|
||||
|
||||
if (*opts & PRUNE_PACKED_DRY_RUN)
|
||||
|
||||
Reference in New Issue
Block a user