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 --- read-cache.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'read-cache.c') diff --git a/read-cache.c b/read-cache.c index 6a04cf194c..a6fbf08982 100644 --- a/read-cache.c +++ b/read-cache.c @@ -196,11 +196,6 @@ int read_cache(void) if (active_cache) return error("more than one cachefile"); errno = ENOENT; - sha1_file_directory = getenv(DB_ENVIRONMENT); - if (!sha1_file_directory) - sha1_file_directory = DEFAULT_DB_ENVIRONMENT; - if (access(sha1_file_directory, X_OK) < 0) - return error("no access to SHA1 file directory"); fd = open(get_index_file(), O_RDONLY); if (fd < 0) return (errno == ENOENT) ? 0 : error("open failed"); -- cgit v1.3