summaryrefslogtreecommitdiff
path: root/src/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/config.c b/src/config.c
index 618202c34..b60faf820 100644
--- a/src/config.c
+++ b/src/config.c
@@ -263,7 +263,7 @@ int git_config_lookup_map_value(
size_t i;
if (!value)
- return GIT_ENOTFOUND;
+ return GIT_NOTFOUND;
for (i = 0; i < map_n; ++i) {
git_cvar_map *m = maps + i;
@@ -295,7 +295,7 @@ int git_config_lookup_map_value(
}
}
- return GIT_ENOTFOUND;
+ return GIT_NOTFOUND;
}
int git_config_get_mapped(
@@ -387,12 +387,12 @@ int git_config_get_string(const char **out, git_config *cfg, const char *name)
git_vector_foreach(&cfg->files, i, internal) {
git_config_file *file = internal->file;
int ret = file->get(file, name, out);
- if (ret != GIT_ENOTFOUND)
+ if (ret != GIT_NOTFOUND)
return ret;
}
giterr_set(GITERR_CONFIG, "Config variable '%s' not found", name);
- return GIT_ENOTFOUND;
+ return GIT_NOTFOUND;
}
int git_config_get_multivar(git_config *cfg, const char *name, const char *regexp,
@@ -400,7 +400,7 @@ int git_config_get_multivar(git_config *cfg, const char *name, const char *regex
{
file_internal *internal;
git_config_file *file;
- int ret = GIT_ENOTFOUND;
+ int ret = GIT_NOTFOUND;
unsigned int i;
assert(cfg->files.length);
@@ -413,7 +413,7 @@ int git_config_get_multivar(git_config *cfg, const char *name, const char *regex
internal = git_vector_get(&cfg->files, i - 1);
file = internal->file;
ret = file->get_multivar(file, name, regexp, fn, data);
- if (ret < 0 && ret != GIT_ENOTFOUND)
+ if (ret < 0 && ret != GIT_NOTFOUND)
return ret;
}
@@ -424,14 +424,14 @@ int git_config_set_multivar(git_config *cfg, const char *name, const char *regex
{
file_internal *internal;
git_config_file *file;
- int ret = GIT_ENOTFOUND;
+ int ret = GIT_NOTFOUND;
unsigned int i;
for (i = cfg->files.length; i > 0; --i) {
internal = git_vector_get(&cfg->files, i - 1);
file = internal->file;
ret = file->set_multivar(file, name, regexp, value);
- if (ret < 0 && ret != GIT_ENOTFOUND)
+ if (ret < 0 && ret != GIT_NOTFOUND)
return ret;
}