aboutsummaryrefslogtreecommitdiffstats
path: root/pack-revindex.h
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2008-08-22 15:45:53 -0400
committerJunio C Hamano <gitster@pobox.com>2008-08-22 22:00:22 -0700
commit4b480c6716a7d8e20e7e510827ea81e7939f335a (patch)
tree24c1de905aecbdebfd1c71485de456d0d6660c31 /pack-revindex.h
parentcompat/snprintf.c: handle snprintf's that always return the # chars transmitted (diff)
downloadgit-4b480c6716a7d8e20e7e510827ea81e7939f335a.tar.xz
git-4b480c6716a7d8e20e7e510827ea81e7939f335a.zip
discard revindex data when pack list changes
This is needed to fix verify-pack -v with multiple pack arguments. Also, in theory, revindex data (if any) must be discarded whenever reprepare_packed_git() is called. In practice this is hard to trigger though. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pack-revindex.h')
-rw-r--r--pack-revindex.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/pack-revindex.h b/pack-revindex.h
index 36a514a6cf6..8d5027ad917 100644
--- a/pack-revindex.h
+++ b/pack-revindex.h
@@ -7,5 +7,6 @@ struct revindex_entry {
};
struct revindex_entry *find_pack_revindex(struct packed_git *p, off_t ofs);
+void discard_revindex(void);
#endif