log: fix error codes handling in catalog_list_items

It does not make sense to print error code from previous loop.
This commit is contained in:
Lukas Nykryn 2013-03-27 10:44:21 +01:00 committed by Zbigniew Jędrzejewski-Szmek
parent 531991b64d
commit 2e8fb7026d

View File

@ -616,7 +616,7 @@ int catalog_list_items(FILE *f, bool oneline, char **items) {
k = sd_id128_from_string(*item, &id);
if (k < 0) {
log_error("Failed to parse id128 '%s': %s",
*item, strerror(-r));
*item, strerror(-k));
if (r < 0)
r = k;
continue;
@ -626,7 +626,7 @@ int catalog_list_items(FILE *f, bool oneline, char **items) {
if (k < 0) {
log_full(k == -ENOENT ? LOG_NOTICE : LOG_ERR,
"Failed to retrieve catalog entry for '%s': %s",
*item, strerror(-r));
*item, strerror(-k));
if (r < 0)
r = k;
continue;