summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2021-09-26 11:28:47 -0400
committerEdward Thomson <ethomson@edwardthomson.com>2021-09-26 17:46:07 -0400
commit46508fe64737c2fe71d9e3221c56fbe0fae6996c (patch)
tree9345c682a32678d87574e3d8e7c2f7ea29fbd559
parentf5a9f0a2587f4fa2d02ee74b0522a0fd99fabe98 (diff)
downloadlibgit2-ethomson/attr_longpaths.tar.gz
attr_file: don't take the `repo` as an argethomson/attr_longpaths
The `repo` argument is now unnecessary. Remove it.
-rw-r--r--src/attr.c6
-rw-r--r--src/attr_file.c1
-rw-r--r--src/attr_file.h1
-rw-r--r--src/ignore.c4
-rw-r--r--tests/attr/lookup.c6
5 files changed, 8 insertions, 10 deletions
diff --git a/src/attr.c b/src/attr.c
index 14eab5b46..92ff6c7a5 100644
--- a/src/attr.c
+++ b/src/attr.c
@@ -68,7 +68,7 @@ int git_attr_get_ext(
if (git_repository_is_bare(repo))
dir_flag = GIT_DIR_FLAG_FALSE;
- if (git_attr_path__init(&path, repo, pathname, git_repository_workdir(repo), dir_flag) < 0)
+ if (git_attr_path__init(&path, pathname, git_repository_workdir(repo), dir_flag) < 0)
return -1;
if ((error = collect_attr_files(repo, NULL, opts, pathname, &files)) < 0)
@@ -149,7 +149,7 @@ int git_attr_get_many_with_session(
if (git_repository_is_bare(repo))
dir_flag = GIT_DIR_FLAG_FALSE;
- if (git_attr_path__init(&path, repo, pathname, git_repository_workdir(repo), dir_flag) < 0)
+ if (git_attr_path__init(&path, pathname, git_repository_workdir(repo), dir_flag) < 0)
return -1;
if ((error = collect_attr_files(repo, attr_session, opts, pathname, &files)) < 0)
@@ -264,7 +264,7 @@ int git_attr_foreach_ext(
if (git_repository_is_bare(repo))
dir_flag = GIT_DIR_FLAG_FALSE;
- if (git_attr_path__init(&path, repo, pathname, git_repository_workdir(repo), dir_flag) < 0)
+ if (git_attr_path__init(&path, pathname, git_repository_workdir(repo), dir_flag) < 0)
return -1;
if ((error = collect_attr_files(repo, NULL, opts, pathname, &files)) < 0 ||
diff --git a/src/attr_file.c b/src/attr_file.c
index 4a0d66e92..71bd20a0f 100644
--- a/src/attr_file.c
+++ b/src/attr_file.c
@@ -551,7 +551,6 @@ git_attr_assignment *git_attr_rule__lookup_assignment(
int git_attr_path__init(
git_attr_path *info,
- git_repository *repo,
const char *path,
const char *base,
git_dir_flag dir_flag)
diff --git a/src/attr_file.h b/src/attr_file.h
index a07cb4268..d634e6da9 100644
--- a/src/attr_file.h
+++ b/src/attr_file.h
@@ -227,7 +227,6 @@ typedef enum { GIT_DIR_FLAG_TRUE = 1, GIT_DIR_FLAG_FALSE = 0, GIT_DIR_FLAG_UNKNO
extern int git_attr_path__init(
git_attr_path *out,
- git_repository *repo,
const char *path,
const char *base,
git_dir_flag is_dir);
diff --git a/src/ignore.c b/src/ignore.c
index f7551cddb..9ead96ba6 100644
--- a/src/ignore.c
+++ b/src/ignore.c
@@ -468,7 +468,7 @@ int git_ignore__lookup(
*out = GIT_IGNORE_NOTFOUND;
if (git_attr_path__init(
- &path, ignores->repo, pathname, git_repository_workdir(ignores->repo), dir_flag) < 0)
+ &path, pathname, git_repository_workdir(ignores->repo), dir_flag) < 0)
return -1;
/* first process builtins - success means path was found */
@@ -552,7 +552,7 @@ int git_ignore_path_is_ignored(
else if (git_repository_is_bare(repo))
dir_flag = GIT_DIR_FLAG_FALSE;
- if ((error = git_attr_path__init(&path, repo, pathname, workdir, dir_flag)) < 0 ||
+ if ((error = git_attr_path__init(&path, pathname, workdir, dir_flag)) < 0 ||
(error = git_ignore__for_path(repo, path.path, &ignores)) < 0)
goto cleanup;
diff --git a/tests/attr/lookup.c b/tests/attr/lookup.c
index bfb2e872f..f19f38fbb 100644
--- a/tests/attr/lookup.c
+++ b/tests/attr/lookup.c
@@ -13,7 +13,7 @@ void test_attr_lookup__simple(void)
cl_assert_equal_s(cl_fixture("attr/attr0"), file->entry->path);
cl_assert(file->rules.length == 1);
- cl_git_pass(git_attr_path__init(&path, NULL, "test", NULL, GIT_DIR_FLAG_UNKNOWN));
+ cl_git_pass(git_attr_path__init(&path, "test", NULL, GIT_DIR_FLAG_UNKNOWN));
cl_assert_equal_s("test", path.path);
cl_assert_equal_s("test", path.basename);
cl_assert(!path.is_dir);
@@ -36,7 +36,7 @@ static void run_test_cases(git_attr_file *file, struct attr_expected *cases, int
int error;
for (c = cases; c->path != NULL; c++) {
- cl_git_pass(git_attr_path__init(&path, NULL, c->path, NULL, GIT_DIR_FLAG_UNKNOWN));
+ cl_git_pass(git_attr_path__init(&path, c->path, NULL, GIT_DIR_FLAG_UNKNOWN));
if (force_dir)
path.is_dir = 1;
@@ -133,7 +133,7 @@ void test_attr_lookup__match_variants(void)
cl_assert_equal_s(cl_fixture("attr/attr1"), file->entry->path);
cl_assert(file->rules.length == 10);
- cl_git_pass(git_attr_path__init(&path, NULL, "/testing/for/pat0", NULL, GIT_DIR_FLAG_UNKNOWN));
+ cl_git_pass(git_attr_path__init(&path, "/testing/for/pat0", NULL, GIT_DIR_FLAG_UNKNOWN));
cl_assert_equal_s("pat0", path.basename);
run_test_cases(file, cases, 0);