Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ledmon for openSUSE:Factory checked 
in at 2023-03-01 16:14:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ledmon (Old)
 and      /work/SRC/openSUSE:Factory/.ledmon.new.31432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ledmon"

Wed Mar  1 16:14:06 2023 rev:24 rq:1068305 version:0.96

Changes:
--------
--- /work/SRC/openSUSE:Factory/ledmon/ledmon.changes    2022-07-19 
17:19:42.228393987 +0200
+++ /work/SRC/openSUSE:Factory/.ledmon.new.31432/ledmon.changes 2023-03-01 
16:14:30.766742746 +0100
@@ -1,0 +2,6 @@
+Tue Feb 28 02:07:16 UTC 2023 - Nicholas Yang <[email protected]>
+
+- add a patch to fix bsc#1208613
+  * 0003-ipmi-avoid-error-messages-on-non-dell-platforms-112.patch
+
+-------------------------------------------------------------------

New:
----
  0003-ipmi-avoid-error-messages-on-non-dell-platforms-112.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ledmon.spec ++++++
--- /var/tmp/diff_new_pack.PIE4Uf/_old  2023-03-01 16:14:31.290745456 +0100
+++ /var/tmp/diff_new_pack.PIE4Uf/_new  2023-03-01 16:14:31.294745476 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ledmon
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,6 +27,7 @@
 Patch0:         harden_ledmon.service.patch
 Patch1:         0001-Ledctl-slots-management-94.patch
 Patch2:         0002-add-Dell-15G-servers.patch
+Patch3:         0003-ipmi-avoid-error-messages-on-non-dell-platforms-112.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libsgutils-devel

++++++ 0003-ipmi-avoid-error-messages-on-non-dell-platforms-112.patch ++++++
>From bd78c563daa6df17ad442d10127526f5450fd06b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kinga=20Ta=C5=84ska?= <[email protected]>
Date: Thu, 17 Nov 2022 15:55:06 +0100
Subject: [PATCH] ipmi: avoid error messages on non-dell platforms (#112)

Signed-off-by: Kinga Tanska <[email protected]>
---
 src/ipmi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ipmi.c b/src/ipmi.c
index 3862840..d7d9e89 100644
--- a/src/ipmi.c
+++ b/src/ipmi.c
@@ -126,7 +126,7 @@ int ipmicmd(int sa, int lun, int netfn, int cmd, int 
datalen, void *data,
                goto end;
        }
        if (rcv.msg.data[0])
-               log_info("IPMI Error: %.2x\n", rcv.msg.data[0]);
+               log_debug("IPMI Error: %.2x\n", rcv.msg.data[0]);
        rc = 0;
        *rlen = rcv.msg.data_len - 1;
        memcpy(resp, rcv.msg.data + 1, *rlen);
-- 
2.39.2

Reply via email to