summaryrefslogtreecommitdiff
path: root/tree.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2005-07-27 23:08:43 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-07-28 01:57:14 (GMT)
commit64071805eda2b57d2b77943bb3f9865d90562ecf (patch)
treef716258e3fd266b5c917765ba56ae1a6a5a6a8f0 /tree.h
parent4e81304afc529c0caca7c012a155be4e342b52d4 (diff)
downloadgit-64071805eda2b57d2b77943bb3f9865d90562ecf.zip
git-64071805eda2b57d2b77943bb3f9865d90562ecf.tar.gz
git-64071805eda2b57d2b77943bb3f9865d90562ecf.tar.bz2
git-fsck-cache: be stricter about "tree" objects
In particular, warn about things like zero-padding of the mode bits, which is a big no-no, since it makes otherwise identical trees have different representations (and thus different SHA1 numbers). Also make the warnings more regular. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'tree.h')
-rw-r--r--tree.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tree.h b/tree.h
index 74fe09d..ae61bcc 100644
--- a/tree.h
+++ b/tree.h
@@ -10,6 +10,7 @@ struct tree_entry_list {
unsigned directory : 1;
unsigned executable : 1;
unsigned symlink : 1;
+ unsigned zeropad : 1;
unsigned int mode;
char *name;
union {