diff options
author | Linus Torvalds <torvalds@osdl.org> | 2006-05-29 21:19:37 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-30 04:08:25 +0200 |
commit | 3bc1eca91e5230739cfb488e63fae35a166a07de (patch) | |
tree | 368141dc0f9a2fa5f57d1c77d7e829c6b6c8c3e4 /tree.h | |
parent | fsck-objects: avoid unnecessary tree_entry_list usage (diff) | |
download | git-3bc1eca91e5230739cfb488e63fae35a166a07de.tar.xz git-3bc1eca91e5230739cfb488e63fae35a166a07de.zip |
Remove unused "zeropad" entry from tree_list_entry
That was a hack, only needed because 'git fsck-objects' didn't look at
the raw tree format. Now that fsck traverses the tree itself, we can
drop it.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'tree.h')
-rw-r--r-- | tree.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -10,7 +10,6 @@ struct tree_entry_list { unsigned directory : 1; unsigned executable : 1; unsigned symlink : 1; - unsigned zeropad : 1; unsigned int mode; const char *name; const unsigned char *sha1; |