diff options
author | Junio C Hamano <junkio@cox.net> | 2005-05-06 16:32:28 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-06 17:00:20 -0700 |
commit | 3d0291c4506f4bfa3869771e580b7304817fec00 (patch) | |
tree | d0d0625749d899ca21fcceb3ce9d2c650389272e /ls-tree.c | |
parent | ee267527aa80807f37caf1d00bcf1b5263945adb (diff) | |
download | git-3d0291c4506f4bfa3869771e580b7304817fec00.tar.gz git-3d0291c4506f4bfa3869771e580b7304817fec00.tar.xz |
[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 <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'ls-tree.c')
-rw-r--r-- | ls-tree.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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; |