From: Michael Schroeder Date: Tue, 30 Nov 2021 09:42:55 +0000 (+0100) Subject: Rename Iti to Itm while we can. X-Git-Tag: 0.7.21~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=316c8d214150658f7f99c959659cd21841783171;p=thirdparty%2Flibsolv.git Rename Iti to Itm while we can. --- diff --git a/ext/repo_testcase.c b/ext/repo_testcase.c index 2497ab57..38676efd 100644 --- a/ext/repo_testcase.c +++ b/ext/repo_testcase.c @@ -491,7 +491,7 @@ testcase_write_testtags(Repo *repo, FILE *fp) fprintf(fp, "=Tim: %u\n", ti); ti = solvable_lookup_num(s, SOLVABLE_INSTALLTIME, 0); if (ti) - fprintf(fp, "=Iti: %u\n", ti); + fprintf(fp, "=Itm: %u\n", ti); writefilelist(repo, fp, "Fls:", s); } queue_free(&q); @@ -638,7 +638,7 @@ testcase_add_testtags(Repo *repo, FILE *fp, int flags) if (t) repodata_set_num(data, s - pool->solvables, SOLVABLE_BUILDTIME, t); break; - case 'I' << 16 | 't' << 8 | 'i': + case 'I' << 16 | 't' << 8 | 'm': t = atoi(line + 6); if (t) repodata_set_num(data, s - pool->solvables, SOLVABLE_INSTALLTIME, t);