summaryrefslogtreecommitdiff
path: root/update-server-info.c
diff options
context:
space:
mode:
authorSergey Vlasov <vsu@altlinux.ru>2005-10-13 17:01:57 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-10-13 17:01:57 (GMT)
commit35613ba4ba967ff408f1b32275f4ebcd51c98097 (patch)
tree9d8856a428af66e637236b9a03cf0082ee957521 /update-server-info.c
parent64c381bf740a0a698fe7556fbb346b700b934f7c (diff)
downloadgit-35613ba4ba967ff408f1b32275f4ebcd51c98097.zip
git-35613ba4ba967ff408f1b32275f4ebcd51c98097.tar.gz
git-35613ba4ba967ff408f1b32275f4ebcd51c98097.tar.bz2
Revert "Also use 'track_object_refs = 0' in update-server-info."
This reverts d119e3de13ea1493107bd57381d0ce9c9dd90976 commit. Object references are used in server-info.c:find_pack_info_one() to find out which objects in the pack are heads, therefore tracking of references cannot be disabled. Signed-off-by: Sergey Vlasov <vsu@altlinux.ru> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'update-server-info.c')
-rw-r--r--update-server-info.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/update-server-info.c b/update-server-info.c
index b708563..e824f62 100644
--- a/update-server-info.c
+++ b/update-server-info.c
@@ -1,5 +1,4 @@
#include "cache.h"
-#include "object.h"
static const char update_server_info_usage[] =
"git-update-server-info [--force]";
@@ -8,8 +7,6 @@ int main(int ac, char **av)
{
int i;
int force = 0;
- track_object_refs = 0;
-
for (i = 1; i < ac; i++) {
if (av[i][0] == '-') {
if (!strcmp("--force", av[i]) ||