0
0
mirror of https://git.zx2c4.com/cgit synced 2025-04-12 10:14:36 +00:00

ui-repolist: do not return unsigned (negative) value

The function read_agefile() returns time_t, which is a signed datatime.
We should not return unsigned (negative) value here.

Reported-by: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
Christian Hesse 2019-11-22 11:09:50 +01:00
parent bfabd4519c
commit 583aa5d80e

@ -20,7 +20,7 @@ static time_t read_agefile(const char *path)
if (readfile(path, &buf, &size)) {
free(buf);
return -1;
return 0;
}
if (parse_date(buf, &date_buf) == 0)