diff options
author | Martin Koegler <mkoegler@auto.tuwien.ac.at> | 2007-04-22 18:43:56 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-04-24 00:08:49 -0700 |
commit | 40689ae1ef9a05503c75298ec50b194ca9d15522 (patch) | |
tree | 4dad320847b1dac17666b71e1b78a18aae821dc4 /cache.h | |
parent | 520d7e278cfd25057e883575060b7378dfab61dc (diff) | |
download | git-40689ae1ef9a05503c75298ec50b194ca9d15522.tar.gz |
Add S_IFINVALID mode
S_IFINVALID is used to signal, that no mode information is available.
Signed-off-by: Martin Koegler <mkoegler@auto.tuwien.ac.at>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -24,6 +24,9 @@ #define DTYPE(de) DT_UNKNOWN #endif +/* unknown mode (impossible combination S_IFIFO|S_IFCHR) */ +#define S_IFINVALID 0030000 + /* * A "directory link" is a link to another git directory. * |