aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2007-02-01 15:52:22 -0500
committerJunio C Hamano <junkio@cox.net>2007-02-01 22:21:19 -0800
commit625e9421df6317a015abeb8d51c6dbb937d99880 (patch)
tree66e86360df0171edf0f8911a551664c49f31aac8
parent859607dfe04260d55f5901974fdd660aebc427fa (diff)
downloadgit-625e9421df6317a015abeb8d51c6dbb937d99880.tar.gz
git-625e9421df6317a015abeb8d51c6dbb937d99880.tar.xz
Cleanup prepare_packed_git_one to reuse install_packed_git.
There is little point in having the linked list insertion code appearing in install_packed_git, and then again just 30 lines further down in the same file. Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--sha1_file.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sha1_file.c b/sha1_file.c
index 498665e50..a42f94ac9 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -790,8 +790,7 @@ static void prepare_packed_git_one(char *objdir, int local)
p = add_packed_git(path, len + namelen, local);
if (!p)
continue;
- p->next = packed_git;
- packed_git = p;
+ install_packed_git(p);
}
closedir(dir);
}