diff options
| author | Junio C Hamano <gitster@pobox.com> | 2011-12-13 22:03:36 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2011-12-13 22:03:36 -0800 |
| commit | 68f80f549092bcbb2409ba9c0eace73c085ba7cc (patch) | |
| tree | cfa6bb8d0528b9fb4bc70e1f28ac178a89b28812 /pack.h | |
| parent | Merge branch 'mf/curl-select-fdset' into maint (diff) | |
| parent | receive-pack, fetch-pack: reject bogus pack that records objects twice (diff) | |
| download | git-68f80f549092bcbb2409ba9c0eace73c085ba7cc.tar.gz git-68f80f549092bcbb2409ba9c0eace73c085ba7cc.zip | |
Merge branch 'jc/index-pack-reject-dups' into maint
* jc/index-pack-reject-dups:
receive-pack, fetch-pack: reject bogus pack that records objects twice
Diffstat (limited to 'pack.h')
| -rw-r--r-- | pack.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -37,7 +37,8 @@ struct pack_header { struct pack_idx_option { unsigned flags; /* flag bits */ -#define WRITE_IDX_VERIFY 01 +#define WRITE_IDX_VERIFY 01 /* verify only, do not write the idx file */ +#define WRITE_IDX_STRICT 02 uint32_t version; uint32_t off32_limit; |
