From 3d0291c4506f4bfa3869771e580b7304817fec00 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 6 May 2005 16:32:28 -0700 Subject: [PATCH] Do not initialize sha1_file_directory by hand. Some commands initialize sha1_file_directory by hand. There is no need to do so; sha1_file.c knows how to handle it. The next patch will remove the variable altogether. Signed-off-by: Junio C Hamano Signed-off-by: Linus Torvalds --- ls-tree.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'ls-tree.c') diff --git a/ls-tree.c b/ls-tree.c index 339ac36a4c..7f8f8644af 100644 --- a/ls-tree.c +++ b/ls-tree.c @@ -104,9 +104,6 @@ int main(int argc, char **argv) usage(ls_tree_usage); if (get_sha1(argv[1], sha1) < 0) usage(ls_tree_usage); - sha1_file_directory = getenv(DB_ENVIRONMENT); - if (!sha1_file_directory) - sha1_file_directory = DEFAULT_DB_ENVIRONMENT; if (list(sha1) < 0) die("list failed"); return 0; -- cgit v1.3