diff options
author | Brandon Williams <bmwill@google.com> | 2017-05-05 12:53:33 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-06 19:15:39 +0900 |
commit | 2c1eb104543265c2d26cf36303b35e426dcacf68 (patch) | |
tree | 8978037ff920390a1c460336201ce383560f68b4 /dir.h | |
parent | 0ef8e169aa40ac98dce71f61074bcd729cd9ba54 (diff) | |
download | git-2c1eb104543265c2d26cf36303b35e426dcacf68.tar.gz |
dir: convert read_directory to take an index
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.h')
-rw-r--r-- | dir.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -215,7 +215,9 @@ extern int report_path_error(const char *ps_matched, const struct pathspec *path extern int within_depth(const char *name, int namelen, int depth, int max_depth); extern int fill_directory(struct dir_struct *dir, const struct pathspec *pathspec); -extern int read_directory(struct dir_struct *, const char *path, int len, const struct pathspec *pathspec); +extern int read_directory(struct dir_struct *, struct index_state *istate, + const char *path, int len, + const struct pathspec *pathspec); extern int is_excluded_from_list(const char *pathname, int pathlen, const char *basename, int *dtype, |