From 17838ec6304198811df97402f11c185f8f0e10bd Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Fri, 19 Dec 2014 00:28:34 -0700 Subject: git: update to v2.2.1 Update to git version v2.2.1, including API changes. Signed-off-by: Christian Hesse --- ui-repolist.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ui-repolist.c') diff --git a/ui-repolist.c b/ui-repolist.c index c2bcce1..49c991f 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -17,16 +17,17 @@ static time_t read_agefile(char *path) time_t result; size_t size; char *buf; - static char buf2[64]; + struct strbuf date_buf = STRBUF_INIT; if (readfile(path, &buf, &size)) return -1; - if (parse_date(buf, buf2, sizeof(buf2)) > 0) - result = strtoul(buf2, NULL, 10); + if (parse_date(buf, &date_buf) == 0) + result = strtoul(date_buf.buf, NULL, 10); else result = 0; free(buf); + strbuf_release(&date_buf); return result; } -- cgit v1.2.3-59-g8ed1b