summaryrefslogtreecommitdiff
path: root/pack.h
diff options
context:
space:
mode:
authorNicolas Pitre <nico@cam.org>2006-09-21 04:11:59 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-09-23 02:24:52 (GMT)
commit16854571aae6302f457c5fbee41ac64669b09595 (patch)
treead636b706b3f8ee8beb8ebbbf762016f3d0454c5 /pack.h
parent3d5c0cc9387b35df47c988fbc0e4379e413d783e (diff)
downloadgit-16854571aae6302f457c5fbee41ac64669b09595.zip
git-16854571aae6302f457c5fbee41ac64669b09595.tar.gz
git-16854571aae6302f457c5fbee41ac64669b09595.tar.bz2
move pack creation to version 3
It's been quite a while now that GIT is able to read version 3 packs. Let's create them at last. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'pack.h')
-rw-r--r--pack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pack.h b/pack.h
index eb07b03..05557da 100644
--- a/pack.h
+++ b/pack.h
@@ -7,7 +7,7 @@
* Packed object header
*/
#define PACK_SIGNATURE 0x5041434b /* "PACK" */
-#define PACK_VERSION 2
+#define PACK_VERSION 3
#define pack_version_ok(v) ((v) == htonl(2) || (v) == htonl(3))
struct pack_header {
unsigned int hdr_signature;