diff options
author | Rick Jones <rick.jones2@hp.com> | 2011-11-15 09:59:53 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-11-16 17:38:55 -0500 |
commit | 33a5ba144e3e7ffc1cd4a1d205e99c16078885bf (patch) | |
tree | 00bd6240afd42ef5a7daf422a8d4acd46118b873 /drivers/net/veth.c | |
parent | 588f033075d8c7efe28695402114eab3f9da47c4 (diff) |
net: sweep-up some straglers in strlcpy conversion of .get_drvinfo routines
Convert some remaining straglers' .get_drvinfo routines to use strlcpy
rather than strcpy/strncpy.
Signed-off-by: Rick Jones <rick.jones2@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/veth.c')
-rw-r--r-- | drivers/net/veth.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/veth.c b/drivers/net/veth.c index 726c790ec74c..d32a75fb6d21 100644 --- a/drivers/net/veth.c +++ b/drivers/net/veth.c | |||
@@ -66,9 +66,9 @@ static int veth_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) | |||
66 | 66 | ||
67 | static void veth_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) | 67 | static void veth_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) |
68 | { | 68 | { |
69 | strcpy(info->driver, DRV_NAME); | 69 | strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); |
70 | strcpy(info->version, DRV_VERSION); | 70 | strlcpy(info->version, DRV_VERSION, sizeof(info->version)); |
71 | strcpy(info->fw_version, "N/A"); | 71 | strlcpy(info->fw_version, "N/A", sizeof(info->fw_version)); |
72 | } | 72 | } |
73 | 73 | ||
74 | static void veth_get_strings(struct net_device *dev, u32 stringset, u8 *buf) | 74 | static void veth_get_strings(struct net_device *dev, u32 stringset, u8 *buf) |