summaryrefslogtreecommitdiff
path: root/read-cache.c
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2013-02-22 12:09:24 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-02-22 20:48:41 (GMT)
commitb82a7b5bbc1c86d5f6d4198f694b213360dc2485 (patch)
tree767129c7e4d57fa5151143015fb64efcf806461f /read-cache.c
parent300e39f6aa974cebf09b5983b923a2bea23146ee (diff)
downloadgit-b82a7b5bbc1c86d5f6d4198f694b213360dc2485.zip
git-b82a7b5bbc1c86d5f6d4198f694b213360dc2485.tar.gz
git-b82a7b5bbc1c86d5f6d4198f694b213360dc2485.tar.bz2
read-cache.c: use INDEX_FORMAT_{LB,UB} in verify_hdr()
9d22778 (read-cache.c: write prefix-compressed names in the index - 2012-04-04) defined these. Interestingly, they were not used by read-cache.c, or anywhere in that patch. They were used in builtin/update-index.c later for checking supported index versions. Use them here too. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'read-cache.c')
-rw-r--r--read-cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/read-cache.c b/read-cache.c
index fda78bc..5cddbc3 100644
--- a/read-cache.c
+++ b/read-cache.c
@@ -1256,7 +1256,7 @@ static int verify_hdr(struct cache_header *hdr, unsigned long size)
if (hdr->hdr_signature != htonl(CACHE_SIGNATURE))
return error("bad signature");
hdr_version = ntohl(hdr->hdr_version);
- if (hdr_version < 2 || 4 < hdr_version)
+ if (hdr_version < INDEX_FORMAT_LB || INDEX_FORMAT_UB < hdr_version)
return error("bad index version %d", hdr_version);
git_SHA1_Init(&c);
git_SHA1_Update(&c, hdr, size - 20);