Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2013-03-19 02:54:35 +0400
committerRussell Belfer <rb@github.com>2013-03-19 02:54:35 +0400
commit324602514fec5ba04fa236c67d633f9b18ad9845 (patch)
treebdbf4505fd513029e03a4a1aaa027b23baa24e1e /src/fileops.c
parent41954a49c12a72eda3b3fe02c2752f6831b5dbf9 (diff)
Fixes and cleanups
Get rid of some dead code, tighten things up a bit, and fix a bug with core::env test.
Diffstat (limited to 'src/fileops.c')
-rw-r--r--src/fileops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fileops.c b/src/fileops.c
index 9700eed3c..fc9fca022 100644
--- a/src/fileops.c
+++ b/src/fileops.c
@@ -562,7 +562,7 @@ clean_up:
static int git_futils_guess_system_dirs(git_buf *out)
{
#ifdef GIT_WIN32
- return win32_find_system_dirs(out);
+ return git_win32__find_system_dirs(out);
#else
return git_buf_sets(out, "/etc");
#endif
@@ -571,7 +571,7 @@ static int git_futils_guess_system_dirs(git_buf *out)
static int git_futils_guess_global_dirs(git_buf *out)
{
#ifdef GIT_WIN32
- return win32_find_global_dirs(out);
+ return git_win32__find_global_dirs(out);
#else
return git_buf_sets(out, getenv("HOME"));
#endif
@@ -580,7 +580,7 @@ static int git_futils_guess_global_dirs(git_buf *out)
static int git_futils_guess_xdg_dirs(git_buf *out)
{
#ifdef GIT_WIN32
- return win32_find_xdg_dirs(out);
+ return git_win32__find_xdg_dirs(out);
#else
const char *env = NULL;