summaryrefslogtreecommitdiff
path: root/src/attr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/attr.c')
-rw-r--r--src/attr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/attr.c b/src/attr.c
index 5849e701f..409c30b01 100644
--- a/src/attr.c
+++ b/src/attr.c
@@ -629,7 +629,7 @@ static int collect_attr_files(
const char *workdir = git_repository_workdir(repo);
attr_walk_up_info info = { NULL };
- GIT_ASSERT(!git_path_is_absolute(path));
+ GIT_ASSERT(!git_fs_path_is_absolute(path));
if ((error = attr_setup(repo, attr_session, opts)) < 0)
return error;
@@ -637,10 +637,10 @@ static int collect_attr_files(
/* Resolve path in a non-bare repo */
if (workdir != NULL) {
if (!(error = git_repository_workdir_path(&dir, repo, path)))
- error = git_path_find_dir(&dir);
+ error = git_fs_path_find_dir(&dir);
}
else {
- error = git_path_dirname_r(&dir, path);
+ error = git_fs_path_dirname_r(&dir, path);
}
if (error < 0)
@@ -670,7 +670,7 @@ static int collect_attr_files(
if (!strcmp(dir.ptr, "."))
error = push_one_attr(&info, "");
else
- error = git_path_walk_up(&dir, workdir, push_one_attr, &info);
+ error = git_fs_path_walk_up(&dir, workdir, push_one_attr, &info);
if (error < 0)
goto cleanup;