ui_repolist: get modtime from packed-refs as fallback

When no modtime could be determined then as a final
fallback try to get it from the packed-refs.

This will show an idle time when a repository has been packed
with all refs in the packed-refs.

Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Cette révision appartient à :
Ferry Huberts 2011-05-13 23:09:34 +02:00 révisé par Lars Hjemli
Parent 2ffeecb7a6
révision 21e0e0bfac

Voir le fichier

@ -46,11 +46,20 @@ static int get_repo_modtime(const struct cgit_repo *repo, time_t *mtime)
}
path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch);
if (stat(path, &s) == 0)
if (stat(path, &s) == 0) {
*mtime = s.st_mtime;
else
*mtime = 0;
r->mtime = *mtime;
return 1;
}
path = fmt("%s/%s", repo->path, "packed-refs");
if (stat(path, &s) == 0) {
*mtime = s.st_mtime;
r->mtime = *mtime;
return 1;
}
*mtime = 0;
r->mtime = *mtime;
return (r->mtime != 0);
}