summaryrefslogtreecommitdiff
path: root/src/fileops.c
diff options
context:
space:
mode:
authorJakob Pfender <jpfender@elegosoft.com>2011-05-25 16:11:57 +0200
committerJakob Pfender <jpfender@elegosoft.com>2011-06-07 12:54:37 +0200
commit1869b31e0c99831b1de394ef8cb4d0c9ee633bea (patch)
tree1eed3d9adbe87acbab1dd3565ab6afd905259300 /src/fileops.c
parent4d7905c579a4a89a4894ec1cea1f593338d1042f (diff)
downloadlibgit2-1869b31e0c99831b1de394ef8cb4d0c9ee633bea.tar.gz
index/fileops: Correctly process symbolic links
gitfo_exists() used to error out if the given file was a symbolic link, due to access() returning an error code. This is not expected behaviour, as gitfo_exists() should only check whether the file itself exists, not its link target if it is a symbolic link. Fix this by calling gitfo_lstat() instead, which is just a wrapper for lstat(). Also fix the same error in index_init_entry().
Diffstat (limited to 'src/fileops.c')
-rw-r--r--src/fileops.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/fileops.c b/src/fileops.c
index b1a6bb8b1..92b95c5dd 100644
--- a/src/fileops.c
+++ b/src/fileops.c
@@ -172,7 +172,9 @@ int gitfo_isfile(const char *path)
int gitfo_exists(const char *path)
{
assert(path);
- return access(path, F_OK);
+
+ struct stat st;
+ return gitfo_lstat(path, &st);
}
git_off_t gitfo_size(git_file fd)