Commit a777fc37 by Alan Rogers

Remove GIT_FILEMODE_NEW as it's unused.

And use 0 for GIT_FILEMODE_UNREADABLE.
parent c3252c11
......@@ -198,12 +198,11 @@ typedef enum {
/** Valid modes for index and tree entries. */
typedef enum {
GIT_FILEMODE_NEW = 0000000,
GIT_FILEMODE_UNREADABLE = 0000000,
GIT_FILEMODE_TREE = 0040000,
GIT_FILEMODE_BLOB = 0100644,
GIT_FILEMODE_BLOB_EXECUTABLE = 0100755,
GIT_FILEMODE_LINK = 0120000,
GIT_FILEMODE_UNREADABLE = 0130000,
GIT_FILEMODE_COMMIT = 0160000,
} git_filemode_t;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment