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

Commit 072ee3f9 authored by Roel Kluin's avatar Roel Kluin Committed by David S. Miller
Browse files

[TEHUTI]: Fix incorrect usage of strncat in bdx_get_drvinfo()



Fix incorrect length for strncat by replacing it with strlcat

Signed-off-by: default avatarRoel Kluin <12o3l@tiscali.nl>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9db7720c
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -2168,10 +2168,10 @@ bdx_get_drvinfo(struct net_device *netdev, struct ethtool_drvinfo *drvinfo)
{
	struct bdx_priv *priv = netdev->priv;

	strncat(drvinfo->driver, BDX_DRV_NAME, sizeof(drvinfo->driver));
	strncat(drvinfo->version, BDX_DRV_VERSION, sizeof(drvinfo->version));
	strncat(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
	strncat(drvinfo->bus_info, pci_name(priv->pdev),
	strlcat(drvinfo->driver, BDX_DRV_NAME, sizeof(drvinfo->driver));
	strlcat(drvinfo->version, BDX_DRV_VERSION, sizeof(drvinfo->version));
	strlcat(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
	strlcat(drvinfo->bus_info, pci_name(priv->pdev),
		sizeof(drvinfo->bus_info));

	drvinfo->n_stats = ((priv->stats_flag) ?