* [PATCH] platform/surface: Replace deprecated strcpy + strcat in blogic_rdconfig
@ 2025-11-17 17:34 Thorsten Blum
0 siblings, 0 replies; only message in thread
From: Thorsten Blum @ 2025-11-17 17:34 UTC (permalink / raw)
To: Khalid Aziz, James E.J. Bottomley, Martin K. Petersen
Cc: Thorsten Blum, linux-scsi, linux-kernel
strcpy() is deprecated and using strcat() is discouraged. Replace them
with scnprintf(). No functional changes.
Link: https://github.com/KSPP/linux/issues/88
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
drivers/scsi/BusLogic.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/scsi/BusLogic.c b/drivers/scsi/BusLogic.c
index a86d780d1ba4..4382dc26bc05 100644
--- a/drivers/scsi/BusLogic.c
+++ b/drivers/scsi/BusLogic.c
@@ -1631,8 +1631,8 @@ static bool __init blogic_rdconfig(struct blogic_adapter *adapter)
/*
Initialize the Host Adapter Full Model Name from the Model Name.
*/
- strcpy(adapter->full_model, "BusLogic ");
- strcat(adapter->full_model, adapter->model);
+ scnprintf(adapter->full_model, sizeof(adapter->full_model),
+ "BusLogic %s", adapter->model);
/*
Select an appropriate value for the Tagged Queue Depth either from a
BusLogic Driver Options specification, or based on whether this Host
--
2.51.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2025-11-17 17:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-17 17:34 [PATCH] platform/surface: Replace deprecated strcpy + strcat in blogic_rdconfig Thorsten Blum
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox