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

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Scharfe <rene.scharfe@lsrfire.ath.cx>2006-09-24 19:30:44 +0400
committerJunio C Hamano <junkio@cox.net>2006-09-25 06:55:07 +0400
commit81b84c42d645dd9c30b77f804abc07e128dc490b (patch)
treea0f75f8d6f0863d14b7ad658cc6e88f60da41605 /builtin-tar-tree.c
parentb0ed9eafb35b2330d5a96be79307f0e65547febb (diff)
git-tar-tree: Remove duplicate git_config() call
generate_tar() eventually calls write_tar_archive() which does all the "real" work and which also calls git_config(git_tar_config). We only need to do this once. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-tar-tree.c')
-rw-r--r--builtin-tar-tree.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/builtin-tar-tree.c b/builtin-tar-tree.c
index 437eb726a9..82b4951f3a 100644
--- a/builtin-tar-tree.c
+++ b/builtin-tar-tree.c
@@ -267,8 +267,6 @@ static int generate_tar(int argc, const char **argv, const char *prefix)
int result;
char *base = NULL;
- git_config(git_tar_config);
-
memset(&args, 0, sizeof(args));
if (argc != 2 && argc != 3)
usage(tar_tree_usage);