Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ipmitool for openSUSE:Factory checked in at 2023-11-09 21:34:28 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ipmitool (Old) and /work/SRC/openSUSE:Factory/.ipmitool.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ipmitool" Thu Nov 9 21:34:28 2023 rev:48 rq:1124192 version:1.8.19.13.gbe11d94 Changes: -------- --- /work/SRC/openSUSE:Factory/ipmitool/ipmitool.changes 2023-07-26 13:22:30.587505452 +0200 +++ /work/SRC/openSUSE:Factory/.ipmitool.new.17445/ipmitool.changes 2023-11-09 21:34:47.267535435 +0100 @@ -1,0 +2,14 @@ +Tue Oct 31 15:55:01 UTC 2023 - Thomas Renninger <[email protected]> + +- bsc#1216556 L3: ipmitool: Unsupported LAN Parameter + lookup error SLE15 SP4+ + Fix regression introduced by 351dad24a26f56580ba6 + lan: Add processing of get/set specific CCs: +https://github.com/ipmitool/ipmitool/pull/388 +https://github.com/ipmitool/ipmitool/pull/389 + Be aware: Even the pullrequest is open for a while, this patch is not + integrated in latest mainstream master branch. +A lanp-Fix-error-response-from-Unsupported-Parameter-lookup.patch.txt +M enterprise-numbers + +------------------------------------------------------------------- New: ---- lanp-Fix-error-response-from-Unsupported-Parameter-lookup.patch.txt ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ipmitool.spec ++++++ --- /var/tmp/diff_new_pack.deDatq/_old 2023-11-09 21:34:48.363575825 +0100 +++ /var/tmp/diff_new_pack.deDatq/_new 2023-11-09 21:34:48.367575972 +0100 @@ -33,6 +33,7 @@ Patch4: 0004-Adjust-SUSE-paths.patch Patch5: 0005-HPM-x-compatibility-message-is-DEBUG-only.patch Patch6: Fix-time-format-for-sel-list-v.patch +Patch7: lanp-Fix-error-response-from-Unsupported-Parameter-lookup.patch.txt BuildRequires: libtool BuildRequires: openssl-devel BuildRequires: readline-devel ++++++ enterprise-numbers ++++++ ++++ 2529 lines (skipped) ++++ between /work/SRC/openSUSE:Factory/ipmitool/enterprise-numbers ++++ and /work/SRC/openSUSE:Factory/.ipmitool.new.17445/enterprise-numbers ++++++ ipmitool-1.8.19.13.gbe11d94.obscpio ++++++ ++++++ lanp-Fix-error-response-from-Unsupported-Parameter-lookup.patch.txt ++++++ >From a61349b443c16821e4884cde5ad8c031d619631a Mon Sep 17 00:00:00 2001 From: Daniel Van Allen <[email protected]> Date: Wed, 21 Dec 2022 14:38:47 -0500 Subject: [PATCH] lanp: Fix error response from Unsupported Parameter lookup Return a pointer to the lan_param instead of NULL in the case when the parameter is not supported. Resolves ipmitool/ipmitool#388 Signed-off-by Daniel Van Allen <[email protected]> --- lib/ipmi_lanp.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/ipmi_lanp.c b/lib/ipmi_lanp.c index 16c0d9a9..49dc697f 100644 --- a/lib/ipmi_lanp.c +++ b/lib/ipmi_lanp.c @@ -236,8 +236,12 @@ get_lan_param_select(struct ipmi_intf *intf, uint8_t chan, int param, int select /* We treat them as valid but empty response */ p->data = NULL; p->data_len = 0; - rc = p; - /* fall through */ + lprintf(LOG_INFO, "Get LAN Parameter '%s' command unsupported: %s", + p->desc, + specific_val2str(rsp->ccode, + get_lan_cc_vals, + completion_code_vals)); + return p; default: /* other completion codes are treated as error */ lprintf(LOG_INFO, "Get LAN Parameter '%s' command failed: %s",
