Browse Source

Oops, the actual 'printf' for missing objects was missing.

Which made fsck very quiet about objects it hadn't found. So add
it. 

We'll need to make things like these optional, because it's
perfectly ok to have partial history if you don't want it,
and don't want to go backwards. But for development, it's best
to always complain about missing sha1 object files that are
referenced from somewhere else.
maint
Linus Torvalds 20 years ago
parent
commit
f1257f3a33
  1. 1
      fsck-cache.c

1
fsck-cache.c

@ -69,6 +69,7 @@ static void check_connectivity(void) @@ -69,6 +69,7 @@ static void check_connectivity(void)
if (lookup_seen(n->needs, n->tag))
continue;
strcpy(hex, sha1_to_hex(n->parent));
printf("missing %s: %s referenced by %s\n", n->tag, sha1_to_hex(n->needs), hex);
}

/* Tell the user about things not referenced.. */
Loading…
Cancel
Save