- dmidecode-fix-redfish-hostname-print-length.patch: Fix Redfish

Hostname print length (bsc#1112755).

OBS-URL: https://build.opensuse.org/package/show/Base:System/dmidecode?expand=0&rev=47
This commit is contained in:
Jean Delvare 2018-10-22 12:52:52 +00:00 committed by Git OBS Bridge
parent 39692e203a
commit e0853bf1f3
3 changed files with 37 additions and 1 deletions

View File

@ -0,0 +1,28 @@
From: Charles Rose <Charles.Rose@dell.com>
Date: Mon, 22 Oct 2018 09:48:02 +0200
Subject: dmidecode: Fix Redfish Hostname print length
Git-commit: fde47bb227b8fa817c88d7e10a8eb771c46de1df
Patch-mainline: yes
References: bsc#1112755
Redfish Hostname prints beyond hlen characters. Fix it.
Signed-off-by: Charles Rose <charles.rose@dell.com>
Fixes: 78539b06117c ("dmidecode: Parse Modern Management Controller blocks")
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: Jean Delvare <jdelvare@suse.de>
---
dmidecode.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/dmidecode.c
+++ b/dmidecode.c
@@ -3609,7 +3609,7 @@ static void dmi_parse_protocol_record(co
hname = out_of_spec;
hlen = strlen(out_of_spec);
}
- printf("%s\t\tRedfish Service Hostname: %*s\n", prefix, hlen, hname);
+ printf("%s\t\tRedfish Service Hostname: %.*s\n", prefix, hlen, hname);
}
/*

View File

@ -1,7 +1,13 @@
-------------------------------------------------------------------
Mon Oct 22 14:51:29 CEST 2018 - jdelvare@suse.de
- dmidecode-fix-redfish-hostname-print-length.patch: Fix Redfish
Hostname print length (bsc#1112755).
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Sep 17 13:01:40 CEST 2018 - jdelvare@suse.de Mon Sep 17 13:01:40 CEST 2018 - jdelvare@suse.de
- Update to upstream version 3.2: - Update to upstream version 3.2 (FATE#326044):
* [COMPATIBILITY] The UUID is now displayed using lowercase * [COMPATIBILITY] The UUID is now displayed using lowercase
letters, per RFC 4122 (#53569). You must ensure that any code letters, per RFC 4122 (#53569). You must ensure that any code
parsing it is case-insensitive. parsing it is case-insensitive.

View File

@ -27,6 +27,7 @@ Source0: http://download.savannah.gnu.org/releases/%{name}/%{name}-%{vers
Source1: http://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.xz.sig Source1: http://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.xz.sig
# https://savannah.nongnu.org/project/memberlist-gpgkeys.php?group=dmidecode # https://savannah.nongnu.org/project/memberlist-gpgkeys.php?group=dmidecode
Source2: %{name}.keyring Source2: %{name}.keyring
Patch1: dmidecode-fix-redfish-hostname-print-length.patch
Provides: pmtools:%{_sbindir}/dmidecode Provides: pmtools:%{_sbindir}/dmidecode
Obsoletes: pmtools < 20071117 Obsoletes: pmtools < 20071117
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -49,6 +50,7 @@ the BIOS told it to.
%prep %prep
%setup -q %setup -q
%patch1 -p1
%build %build
make CFLAGS="%{optflags}" %{?_smp_mflags} make CFLAGS="%{optflags}" %{?_smp_mflags}