summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2012-10-16 19:34:29 +0200
committerVicent Marti <tanoku@gmail.com>2012-10-16 19:37:21 +0200
commit18217e7e8abaef5f5ae5582231c7d6fbc2741f74 (patch)
treed2106836377ee53616c7ffb1d1fcb204313f9113 /src
parenta891841850d50d68842c88f57cd3f7c9cbdff38f (diff)
downloadlibgit2-18217e7e8abaef5f5ae5582231c7d6fbc2741f74.tar.gz
test: Don't be so picky with failed lookups
Not found means not found, and the other way around.
Diffstat (limited to 'src')
-rw-r--r--src/fileops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fileops.c b/src/fileops.c
index 763537a46..6abab8836 100644
--- a/src/fileops.c
+++ b/src/fileops.c
@@ -418,14 +418,14 @@ int git_futils_find_global_file(git_buf *path, const char *filename)
root.path[0] == L'%') /* i.e. no expansion happened */
{
giterr_set(GITERR_OS, "Cannot locate the user's profile directory");
- return -1;
+ return GIT_ENOTFOUND;
}
} else {
if (win32_expand_path(&root, L"%USERPROFILE%\\") < 0 ||
root.path[0] == L'%') /* i.e. no expansion happened */
{
giterr_set(GITERR_OS, "Cannot locate the user's profile directory");
- return -1;
+ return GIT_ENOTFOUND;
}
}
@@ -440,7 +440,7 @@ int git_futils_find_global_file(git_buf *path, const char *filename)
if (home == NULL) {
giterr_set(GITERR_OS, "Global file lookup failed. "
"Cannot locate the user's home directory");
- return -1;
+ return GIT_ENOTFOUND;
}
if (git_buf_joinpath(path, home, filename) < 0)