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