diff options
| author | Jonathan Nieder <jrnieder@gmail.com> | 2017-08-22 17:01:34 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2017-08-23 10:41:24 -0700 |
| commit | 21c7c2d92d4b107ca854d84d4cd4d86c7993089c (patch) | |
| tree | 7f1a575f28bdfd57f8868c9db9283fa941a5e630 /vcs-svn/repo_tree.h | |
| parent | vcs-svn: remove more unused prototypes and declarations (diff) | |
| download | git-21c7c2d92d4b107ca854d84d4cd4d86c7993089c.tar.gz git-21c7c2d92d4b107ca854d84d4cd4d86c7993089c.zip | |
vcs-svn: remove custom mode constants
In the rest of Git, these modes are spelled as S_IFDIR,
S_IFREG | 0644, S_IFREG | 0755, and S_IFLNK. Use the same constants
in svn-fe for simplicity and consistency.
No functional change intended.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'vcs-svn/repo_tree.h')
| -rw-r--r-- | vcs-svn/repo_tree.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/vcs-svn/repo_tree.h b/vcs-svn/repo_tree.h index 0d3bbb677d..c840bc9bae 100644 --- a/vcs-svn/repo_tree.h +++ b/vcs-svn/repo_tree.h @@ -1,11 +1,6 @@ #ifndef REPO_TREE_H_ #define REPO_TREE_H_ -#define REPO_MODE_DIR 0040000 -#define REPO_MODE_BLB 0100644 -#define REPO_MODE_EXE 0100755 -#define REPO_MODE_LNK 0120000 - void svn_repo_copy(uint32_t revision, const char *src, const char *dst); const char *svn_repo_read_path(const char *path, uint32_t *mode_out); void svn_repo_delete(const char *path); |
