diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2011-08-04 06:36:20 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-04 15:53:17 -0700 |
commit | 2d72174492b926dffd15d5fd8f4239060fb12247 (patch) | |
tree | 27eebdfd46c7f9d3167eceae8d7cab34c69bb12f /attr.c | |
parent | a872701755347efe22be998d1e39f454fc422ff2 (diff) | |
download | git-2d72174492b926dffd15d5fd8f4239060fb12247.tar.gz |
Extract a function collect_all_attrs()
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'attr.c')
-rw-r--r-- | attr.c | 17 |
1 files changed, 14 insertions, 3 deletions
@@ -713,20 +713,31 @@ static int macroexpand_one(int attr_nr, int rem) return rem; } -int git_checkattr(const char *path, int num, struct git_attr_check *check) +/* + * Collect all attributes for path into the array pointed to by + * check_all_attr. + */ +static void collect_all_attrs(const char *path) { struct attr_stack *stk; - int pathlen, i, rem; + int i, pathlen, rem; bootstrap_attr_stack(); + prepare_attr_stack(path); for (i = 0; i < attr_nr; i++) check_all_attr[i].value = ATTR__UNKNOWN; pathlen = strlen(path); - prepare_attr_stack(path); rem = attr_nr; for (stk = attr_stack; 0 < rem && stk; stk = stk->prev) rem = fill(path, pathlen, stk, rem); +} + +int git_checkattr(const char *path, int num, struct git_attr_check *check) +{ + int i; + + collect_all_attrs(path); for (i = 0; i < num; i++) { const char *value = check_all_attr[check[i].attr->attr_nr].value; |