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 13:35:50 +01:00
parent bfabd4519c
commit 583aa5d80e
+1 -1
View File
@@ -20,7 +20,7 @@ static time_t read_agefile(const char *path)
if (readfile(path, &buf, &size)) { if (readfile(path, &buf, &size)) {
free(buf); free(buf);
return -1; return 0;
} }
if (parse_date(buf, &date_buf) == 0) if (parse_date(buf, &date_buf) == 0)