From: Michael Schroeder Date: Mon, 7 Dec 2015 12:17:47 +0000 (+0100) Subject: If it doesn't call exit, it is not fatal X-Git-Tag: 0.6.15~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4567b87ba483011f6d535202b4685947c91b5d4;p=thirdparty%2Flibsolv.git If it doesn't call exit, it is not fatal --- diff --git a/ext/repo_content.c b/ext/repo_content.c index e94ca9e8..0cd1293d 100644 --- a/ext/repo_content.c +++ b/ext/repo_content.c @@ -142,7 +142,7 @@ adddep(Pool *pool, struct parsedata *pd, unsigned int olddeps, char *line, Id ma if (!rel || !evr) { - pool_debug(pool, SOLV_FATAL, "repo_content: bad relation '%s %s'\n", name, rel); + pool_debug(pool, SOLV_ERROR, "repo_content: bad relation '%s %s'\n", name, rel); continue; } for (flags = 0; flags < 6; flags++) @@ -150,7 +150,7 @@ adddep(Pool *pool, struct parsedata *pd, unsigned int olddeps, char *line, Id ma break; if (flags == 6) { - pool_debug(pool, SOLV_FATAL, "repo_content: unknown relation '%s'\n", rel); + pool_debug(pool, SOLV_ERROR, "repo_content: unknown relation '%s'\n", rel); continue; } id = pool_rel2id(pool, id, pool_str2id(pool, evr, 1), flags + 1, 1); @@ -518,7 +518,7 @@ repo_add_content(Repo *repo, FILE *fp, int flags) if (s && !s->name) { - pool_debug(pool, SOLV_FATAL, "repo_content: 'content' incomplete, no product solvable created!\n"); + pool_debug(pool, SOLV_ERROR, "repo_content: 'content' incomplete, no product solvable created!\n"); repo_free_solvable(repo, s - pool->solvables, 1); s = 0; }