diff options
author | Russell Belfer <arrbee@arrbee.com> | 2012-01-17 15:49:47 -0800 |
---|---|---|
committer | Russell Belfer <arrbee@arrbee.com> | 2012-01-17 15:49:47 -0800 |
commit | 1744fafec05d8fa3036a43f5e390c790810b05a5 (patch) | |
tree | b87f0616dd832ec66cc2450b5751b70d468a350e /src/attr.c | |
parent | d1317f1b69cafb328ca9b263b2b71cddeb2290be (diff) | |
download | libgit2-1744fafec05d8fa3036a43f5e390c790810b05a5.tar.gz |
Move path related functions from fileops to path
This takes all of the functions that look up simple data about
paths (such as `git_futils_isdir`) and moves them over to path.h
(becoming `git_path_isdir`). This leaves fileops.h just with
functions that actually manipulate the filesystem or look at
the file contents in some way.
As part of this, the dir.h header which is really just for win32
support was moved into win32 (with some minor changes).
Diffstat (limited to 'src/attr.c')
-rw-r--r-- | src/attr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/attr.c b/src/attr.c index dc42379ff..984b04ff1 100644 --- a/src/attr.c +++ b/src/attr.c @@ -230,7 +230,7 @@ int git_attr_cache__push_file( /* either get attr_file from cache or read from disk */ file = git_hashtable_lookup(cache->files, filename); - if (file == NULL && git_futils_exists(filename) == GIT_SUCCESS) { + if (file == NULL && git_path_exists(filename) == GIT_SUCCESS) { error = (*loader)(repo, filename, &file); add_to_cache = (error == GIT_SUCCESS); } @@ -279,7 +279,7 @@ static int collect_attr_files( if ((error = git_vector_init(files, 4, NULL)) < GIT_SUCCESS) goto cleanup; - if ((error = git_futils_dir_for_path(&dir, path, workdir)) < GIT_SUCCESS) + if ((error = git_path_find_dir(&dir, path, workdir)) < GIT_SUCCESS) goto cleanup; /* in precendence order highest to lowest: |