From 40e7629194c79e72009b5b8e98cce65921b0faf2 Mon Sep 17 00:00:00 2001 From: Jeff King Date: Tue, 21 Jun 2011 21:22:20 -0400 Subject: [PATCH] archive-tar: don't reload default config options We load our own tar-specific config, and then chain to git_default_config. This is pointless, as our caller should already have loaded the default config. It also introduces a needless inconsistency with the zip archiver, which does not look at the config files at all (and therefore relies on the caller to have loaded config). Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- archive-tar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archive-tar.c b/archive-tar.c index cee06ce3cb..1ab1a2caf5 100644 --- a/archive-tar.c +++ b/archive-tar.c @@ -231,7 +231,7 @@ static int git_tar_config(const char *var, const char *value, void *cb) } return 0; } - return git_default_config(var, value, cb); + return 0; } int write_tar_archive(struct archiver_args *args) -- 2.11.4.GIT