[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <4F71C05C.4040300@iogearbox.net>
Date: Tue, 27 Mar 2012 15:27:56 +0200
From: Daniel Borkmann <danborkmann@...earbox.net>
To: Ralf Baechle <ralf@...ux-mips.org>
CC: "David S. Miller" <davem@...emloft.net>,
"netdev@...r.kernel.org" <netdev@...r.kernel.org>
Subject: [PATCH] rose_dev: fix memcpy-bug in rose_set_mac_address
This patch fixes a small bug in rose_set_mac_address. If the current and new
MAC addresses match, then nothing needs to be done. However memcpy was used
instead of memcmp for comparison.
The patch is against the latest net-tree.
Signed-off-by: Daniel Borkmann <daniel.borkmann@....ee.ethz.ch>
Cc: Ralf Baechle <ralf@...ux-mips.org>
---
net/rose/rose_dev.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/rose/rose_dev.c b/net/rose/rose_dev.c
index 178ff4f..3c5ce5e 100644
--- a/net/rose/rose_dev.c
+++ b/net/rose/rose_dev.c
@@ -96,7 +96,7 @@ static int rose_set_mac_address(struct net_device *dev, void *addr)
struct sockaddr *sa = addr;
int err;
- if (!memcpy(dev->dev_addr, sa->sa_data, dev->addr_len))
+ if (!memcmp(dev->dev_addr, sa->sa_data, dev->addr_len))
return 0;
if (dev->flags & IFF_UP) {
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists