diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2013-02-22 19:09:24 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-22 12:48:41 -0800 |
commit | b82a7b5bbc1c86d5f6d4198f694b213360dc2485 (patch) | |
tree | 767129c7e4d57fa5151143015fb64efcf806461f /read-cache.c | |
parent | 300e39f6aa974cebf09b5983b923a2bea23146ee (diff) | |
download | git-b82a7b5bbc1c86d5f6d4198f694b213360dc2485.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/read-cache.c b/read-cache.c index fda78bc353..5cddbc325f 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); |