summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Strickroth <email@cs-ware.de>2012-09-24 23:22:07 +0200
committerSven Strickroth <email@cs-ware.de>2012-09-24 23:22:07 +0200
commit407cf4e414ac2d67a27212e31d96582d4b83c8bc (patch)
tree26e14679cf1b539bc76ba2ba534e65613c50d160
parent8b4f9b17580c52ac2b1f2f42f5c53116fb763436 (diff)
downloadlibgit2-407cf4e414ac2d67a27212e31d96582d4b83c8bc.tar.gz
Fixed typo: xdr config needs to have a lower priority than the global one
Signed-off-by: Sven Strickroth <email@cs-ware.de>
-rw-r--r--src/repository.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repository.c b/src/repository.c
index 3906cb388..d1cf47fe5 100644
--- a/src/repository.c
+++ b/src/repository.c
@@ -471,7 +471,7 @@ static int load_config(
}
if (xdr_config_path != NULL) {
- if (git_config_add_file_ondisk(cfg, xdr_config_path, 3) < 0)
+ if (git_config_add_file_ondisk(cfg, xdr_config_path, 2) < 0)
goto on_error;
}