fsck-cache: warn about missing commit dates
Now that we have hopefully converted all old archives, we can consider it an error.maint
parent
3f053897b3
commit
e6948b6d88
|
|
@ -57,6 +57,8 @@ static int fsck_commit(unsigned char *sha1, void *data, unsigned long size)
|
||||||
return -1;
|
return -1;
|
||||||
if (!commit->parents)
|
if (!commit->parents)
|
||||||
printf("root %s\n", sha1_to_hex(sha1));
|
printf("root %s\n", sha1_to_hex(sha1));
|
||||||
|
if (!commit->date)
|
||||||
|
printf("bad commit date in %s\n", sha1_to_hex(sha1));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue