diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2022-08-19 00:01:22 +0300 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2022-08-25 14:38:07 +0300 |
commit | 6bb79f5b4c84a09cd6bed46ef3e46ef4fc21407d (patch) | |
tree | af20088efb456ea9429678b096009ecf64eb3e6b /drivers/xen/xen-scsiback.c | |
parent | ab0af755d40f2ea4ef01503e7bebf083f65c9062 (diff) | |
download | linux-6bb79f5b4c84a09cd6bed46ef3e46ef4fc21407d.tar.xz |
xen: move from strlcpy with unused retval to strscpy
Follow the advice of the below link and prefer 'strscpy' in this
subsystem. Conversion is 1:1 because the return value is not used.
Generated by a coccinelle script.
Link: https://lore.kernel.org/r/CAHk-=wgfRnXz0W3D37d01q3JFkr_i_uTL=V6A6G1oUZcprmknw@mail.gmail.com/
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
Link: https://lore.kernel.org/r/20220818210122.7613-1-wsa+renesas@sang-engineering.com
Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'drivers/xen/xen-scsiback.c')
-rw-r--r-- | drivers/xen/xen-scsiback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/xen-scsiback.c b/drivers/xen/xen-scsiback.c index 7a0c93acc2c5..d3dcda344989 100644 --- a/drivers/xen/xen-scsiback.c +++ b/drivers/xen/xen-scsiback.c @@ -1121,7 +1121,7 @@ static void scsiback_do_1lun_hotplug(struct vscsibk_info *info, int op, "%s: writing %s", __func__, state); return; } - strlcpy(phy, val, VSCSI_NAMELEN); + strscpy(phy, val, VSCSI_NAMELEN); kfree(val); /* virtual SCSI device */ |