1
0
mirror of https://github.com/dynup/kpatch synced 2025-04-01 22:48:08 +00:00

fix logging in kpatch_verify_patchability()

log_normal() already prints the objname; no need to do it again

Signed-off-by: Seth Jennings <sjenning@redhat.com>
This commit is contained in:
Seth Jennings 2014-07-18 15:29:46 -05:00
parent 1c8e8a7d57
commit bdb44e7594

View File

@ -913,8 +913,8 @@ void kpatch_verify_patchability(struct kpatch_elf *kelf)
list_for_each_entry(sec, &kelf->sections, list) {
if (sec->status == CHANGED && !sec->include) {
log_normal("%s: changed section %s not selected for inclusion\n",
objname, sec->name);
log_normal("changed section %s not selected for inclusion\n",
sec->name);
errs++;
}
@ -922,8 +922,8 @@ void kpatch_verify_patchability(struct kpatch_elf *kelf)
if (sec->include &&
(!strncmp(sec->name, ".data", 5) ||
!strncmp(sec->name, ".bss", 4))) {
log_normal("%s: data section %s selected for inclusion\n",
objname, sec->name);
log_normal("data section %s selected for inclusion\n",
sec->name);
errs++;
}
}