From: Zbigniew Jędrzejewski-Szmek Date: Sat, 10 Sep 2016 16:44:50 +0000 (+0100) Subject: networkd: change message about missing Kind X-Git-Tag: v232~203^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=881e6b5edfd6ff82e0683678f19c887cbacab344;p=thirdparty%2Fsystemd.git networkd: change message about missing Kind If Kind is not specied, the message about "Invalid Kind" was misleading. If Kind was specified in an invalid way, we get a message in the parsing phase anyway. Reword the message to cover both cases better. --- diff --git a/src/network/networkd-netdev.c b/src/network/networkd-netdev.c index 9cf678a3ef0..ece4ea2e646 100644 --- a/src/network/networkd-netdev.c +++ b/src/network/networkd-netdev.c @@ -622,7 +622,7 @@ static int netdev_load_one(Manager *manager, const char *filename) { return 0; if (netdev_raw->kind == _NETDEV_KIND_INVALID) { - log_warning("NetDev with invalid Kind configured in %s. Ignoring", filename); + log_warning("NetDev has no Kind configured in %s. Ignoring", filename); return 0; }