X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=index-pack.c;h=babe34b2db520a311d6c8ef090383755ba1807c9;hb=ca557afff9f7dad7a8739cd193ac0730d872e282;hp=541d7bc1c1723c1a41cd35349b607223c94a4dca;hpb=7e4a2a848377241b8fb4f624d1151bbf2f8d5814;p=git.git diff --git a/index-pack.c b/index-pack.c index 541d7bc1..babe34b2 100644 --- a/index-pack.c +++ b/index-pack.c @@ -68,9 +68,9 @@ static void parse_pack_header(void) hdr = (void *)pack_base; if (hdr->hdr_signature != htonl(PACK_SIGNATURE)) die("packfile '%s' signature mismatch", pack_name); - if (hdr->hdr_version != htonl(PACK_VERSION)) - die("packfile '%s' version %d different from ours %d", - pack_name, ntohl(hdr->hdr_version), PACK_VERSION); + if (!pack_version_ok(hdr->hdr_version)) + die("packfile '%s' version %d unsupported", + pack_name, ntohl(hdr->hdr_version)); nr_objects = ntohl(hdr->hdr_entries);