Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Koegler <mkoegler@auto.tuwien.ac.at>2007-04-22 20:43:56 +0400
committerJunio C Hamano <junkio@cox.net>2007-04-24 11:08:49 +0400
commit40689ae1ef9a05503c75298ec50b194ca9d15522 (patch)
tree4dad320847b1dac17666b71e1b78a18aae821dc4 /cache.h
parent520d7e278cfd25057e883575060b7378dfab61dc (diff)
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.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index 89aaf0022d..b1adbe7b6e 100644
--- a/cache.h
+++ b/cache.h
@@ -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.
*