From: Tom Gundersen Date: Sat, 4 Jan 2014 03:22:06 +0000 (+0100) Subject: Revert "net-util: add support for Type=ethernet" X-Git-Tag: v209~548 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=d69b12ac8aed834e4a8220d19c6895ef04c73679;hp=39602c3905da5196987b4df744541295ada725ae Revert "net-util: add support for Type=ethernet" This reverts commit 4cd1214db6cf4b262e8ce6381bc710091b375c96. This may still be fixed in the kernel, revert this for now until we see how it all shakes out. --- diff --git a/man/systemd-networkd.service.xml b/man/systemd-networkd.service.xml index f34471c39..57be3358f 100644 --- a/man/systemd-networkd.service.xml +++ b/man/systemd-networkd.service.xml @@ -146,8 +146,7 @@ Type The device type, as exposed by the udev property - DEVTYPE, or ethernet - to match devices without a DEVTYPE. + DEVTYPE. diff --git a/man/udev.xml b/man/udev.xml index 0bcb91139..32a520e7b 100644 --- a/man/udev.xml +++ b/man/udev.xml @@ -793,8 +793,7 @@ Type - The device type, as exposed by the udev property DEVTYPE, or - ethernet to match a device without a DEVTYPE. + The device type, as exposed by the udev property DEVTYPE. diff --git a/src/shared/net-util.c b/src/shared/net-util.c index 85278e5de..8f8cfc9fd 100644 --- a/src/shared/net-util.c +++ b/src/shared/net-util.c @@ -49,7 +49,7 @@ bool net_match_config(const struct ether_addr *match_mac, if (match_driver && !streq_ptr(match_driver, dev_driver)) return 0; - if (match_type && !streq_ptr(match_type, dev_type) && !(streq(match_type, "ethernet") && !dev_type)) + if (match_type && !streq_ptr(match_type, dev_type)) return 0; if (match_name && !streq_ptr(match_name, dev_name))