import lsscsi-0.32-3.el8

This commit is contained in:
CentOS Sources 2021-11-09 05:09:54 -05:00 committed by Stepan Oksanichenko
parent f150ac7a8e
commit 30eb0902d8
2 changed files with 31 additions and 1 deletions

View File

@ -0,0 +1,25 @@
From c13c9d3a90aec4779a0cbe484913f24bce947ab1 Mon Sep 17 00:00:00 2001
From: Wenchao Hao <haowenchao@huawei.com>
Date: Tue, 8 Jun 2021 16:26:04 +0800
Subject: [PATCH] Fix lsscsi wwn number output error
The true wwn number is from the sixth byte of scsi-*
Signed-off-by: Wenchao Hao <haowenchao@huawei.com>
---
src/lsscsi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lsscsi.c b/src/lsscsi.c
index 6f6953f..2be3ab9 100644
--- a/src/lsscsi.c
+++ b/src/lsscsi.c
@@ -1515,7 +1515,7 @@ collect_disk_wwn_nodes(void)
cur_ent = &cur_list->nodes[cur_list->count];
my_strcopy(cur_ent->wwn, "0x", 3);
- my_strcopy(cur_ent->wwn + 2, dep->d_name + 5,
+ my_strcopy(cur_ent->wwn + 2, dep->d_name + 6,
sizeof(cur_ent->wwn) - 2);
my_strcopy(cur_ent->disk_bname, basename(symlink_path),
sizeof(cur_ent->disk_bname));

View File

@ -1,13 +1,15 @@
Summary: List SCSI devices (or hosts) and associated information Summary: List SCSI devices (or hosts) and associated information
Name: lsscsi Name: lsscsi
Version: 0.32 Version: 0.32
Release: 2%{?dist} Release: 3%{?dist}
License: GPLv2+ License: GPLv2+
Group: Applications/System Group: Applications/System
# official git repository: https://github.com/doug-gilbert/lsscsi # official git repository: https://github.com/doug-gilbert/lsscsi
Source0: http://sg.danny.cz/scsi/%{name}-%{version}.tgz Source0: http://sg.danny.cz/scsi/%{name}-%{version}.tgz
URL: http://sg.danny.cz/scsi/lsscsi.html URL: http://sg.danny.cz/scsi/lsscsi.html
Patch0: lsscsi-0.32-fix-uninitialized-variable.patch Patch0: lsscsi-0.32-fix-uninitialized-variable.patch
# https://bugzilla.redhat.com/show_bug.cgi?id=1981038
Patch1: lsscsi-0.33-wwn-trunc.patch
%description %description
Uses information provided by the sysfs pseudo file system in Linux kernel Uses information provided by the sysfs pseudo file system in Linux kernel
@ -38,6 +40,9 @@ make DESTDIR=%{buildroot} install
%changelog %changelog
* Mon Aug 16 2021 Tomas Bzatek <tbzatek@redhat.com> - 0.32-3
- Fix WWN ID truncation (#1981038)
* Wed Nov 11 2020 Tomas Bzatek <tbzatek@redhat.com> - 0.32-2 * Wed Nov 11 2020 Tomas Bzatek <tbzatek@redhat.com> - 0.32-2
- Fix an unitialized variable (Covscan) - Fix an unitialized variable (Covscan)