[systemd-commits] src/udev
Kay Sievers
kay at kemper.freedesktop.org
Thu Dec 6 12:37:47 PST 2012
src/udev/udev-builtin-net_id.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 971e7fb62548f2c9c4e32684bb13409e6579dc6a
Author: Kay Sievers <kay at vrfy.org>
Date: Thu Dec 6 21:37:10 2012 +0100
udev: net_id - fix OUI handling
diff --git a/src/udev/udev-builtin-net_id.c b/src/udev/udev-builtin-net_id.c
index 88c28a9..e6db2e4 100644
--- a/src/udev/udev-builtin-net_id.c
+++ b/src/udev/udev-builtin-net_id.c
@@ -330,9 +330,9 @@ static int names_mac(struct udev_device *dev, struct netnames *names) {
/* IEEE Organizationally Unique Identifier vendor string */
static int ieee_oui(struct udev_device *dev, struct netnames *names, bool test) {
- char str[IFNAMSIZ];
+ char str[32];
- if (names->mac_valid)
+ if (!names->mac_valid)
return -ENOENT;
/* skip commonly misused 00:00:00 (Xerox) prefix */
if (memcmp(names->mac, "\0\0\0", 3) == 0)
More information about the systemd-commits
mailing list