Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8f903539 authored by David Disseldorp's avatar David Disseldorp Committed by Nicholas Bellinger
Browse files

target/stat: print full t10_wwn.model buffer



Cut 'n paste error saw it only process sizeof(t10_wwn.vendor) characters.

Signed-off-by: default avatarDavid Disseldorp <ddiss@suse.de>
Signed-off-by: default avatarNicholas Bellinger <nab@linux-iscsi.org>
parent d94e5a61
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -246,7 +246,7 @@ static ssize_t target_stat_lu_prod_show(struct config_item *item, char *page)
	char str[sizeof(dev->t10_wwn.model)+1];

	/* scsiLuProductId */
	for (i = 0; i < sizeof(dev->t10_wwn.vendor); i++)
	for (i = 0; i < sizeof(dev->t10_wwn.model); i++)
		str[i] = ISPRINT(dev->t10_wwn.model[i]) ?
			dev->t10_wwn.model[i] : ' ';
	str[i] = '\0';