diff options
Diffstat (limited to 'src/fileops.c')
| -rw-r--r-- | src/fileops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileops.c b/src/fileops.c index bfd63f584..203cce0a4 100644 --- a/src/fileops.c +++ b/src/fileops.c @@ -127,7 +127,7 @@ int git_futils_isfile(const char *path) int git_futils_exists(const char *path) { assert(path); - return access(path, F_OK); + return p_access(path, F_OK); } git_off_t git_futils_filesize(git_file fd) |
