summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b0ed9ea)
raw | patch | inline | side by side (parent: b0ed9ea)
author | Rene Scharfe <rene.scharfe@lsrfire.ath.cx> | |
Sun, 24 Sep 2006 15:30:44 +0000 (17:30 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Mon, 25 Sep 2006 02:55:07 +0000 (19:55 -0700) |
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>
"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>
builtin-tar-tree.c | patch | blob | history |
diff --git a/builtin-tar-tree.c b/builtin-tar-tree.c
index 437eb726a9b207353545726f379ab8638c0eecb9..82b4951f3af8e7d6c58cc52798abd3094c4ea7d9 100644 (file)
--- a/builtin-tar-tree.c
+++ b/builtin-tar-tree.c
int result;
char *base = NULL;
- git_config(git_tar_config);
-
memset(&args, 0, sizeof(args));
if (argc != 2 && argc != 3)
usage(tar_tree_usage);