Skip to content

Commit

Permalink
Add missing "il" to header sanity check error message
Browse files Browse the repository at this point in the history
  • Loading branch information
pmatilai committed Aug 15, 2017
1 parent a3c1f73 commit 9a6a95b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/header.c
Expand Up @@ -1838,7 +1838,7 @@ static rpmRC hdrblobVerifyRegion(rpmTagVal regionTag, int exact_size,
/* In package files region size is expected to match header size. */
if (exact_size && !(blob->il == blob->ril && blob->dl == blob->rdl)) {
rasprintf(buf,
_("region %d: tag number mismatch %d ril %d dl %d rdl %d\n"),
_("region %d: tag number mismatch il %d ril %d dl %d rdl %d\n"),
regionTag, blob->il, blob->ril, blob->dl, blob->rdl);
goto exit;
}
Expand Down

1 comment on commit 9a6a95b

@n3npq
Copy link
Contributor

@n3npq n3npq commented on 9a6a95b Aug 15, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How is this failure considered a "tag number mismatch"?

Please sign in to comment.