ui-repolist: do not use agefile if it's date could not be parsed Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
Ferry Huberts ferry.huberts@pelagic.nl
Tue, 09 Oct 2012 13:09:58 +0200
1 files changed,
4 insertions(+),
2 deletions(-)
jump to
M
ui-repolist.c
→
ui-repolist.c
@@ -43,8 +43,10 @@ }
path = fmt("%s/%s", repo->path, ctx.cfg.agefile); if (stat(path, &s) == 0) { *mtime = read_agefile(path); - r->mtime = *mtime; - return 1; + if (*mtime) { + r->mtime = *mtime; + return 1; + } } path = fmt("%s/refs/heads/%s", repo->path, repo->defbranch ?