dir.c: remove an implicit dependency on the_index in pathspec code
[gitweb.git] / builtin / check-attr.c
index 91444dc0448b32e854f1923fe1e57e28c87f5b35..f7b59993d3a10952921204bbaaf4d4bf349191c5 100644 (file)
@@ -63,9 +63,9 @@ static void check_attr(const char *prefix,
                prefix_path(prefix, prefix ? strlen(prefix) : 0, file);
 
        if (collect_all) {
-               git_all_attrs(full_path, check);
+               git_all_attrs(&the_index, full_path, check);
        } else {
-               if (git_check_attr(full_path, check))
+               if (git_check_attr(&the_index, full_path, check))
                        die("git_check_attr died");
        }
        output_attr(check, file);