summaryrefslogtreecommitdiffstats
path: root/src/network/networkd-network.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2019-02-27 13:34:51 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2019-02-27 13:35:19 +0100
commit3772cfde036dc7707cb300c62bc39cabe16e7c20 (patch)
treeb5dc82dae1dc45503f8bc712d2e349cacd73a81a /src/network/networkd-network.c
parentselinux: don't log SELINUX_INFO and SELINUX_WARNING messages to audit (diff)
downloadsystemd-3772cfde036dc7707cb300c62bc39cabe16e7c20.tar.xz
systemd-3772cfde036dc7707cb300c62bc39cabe16e7c20.zip
network: wrap some long lines
Diffstat (limited to '')
-rw-r--r--src/network/networkd-network.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/network/networkd-network.c b/src/network/networkd-network.c
index 75dd8b9e4e..b413abacff 100644
--- a/src/network/networkd-network.c
+++ b/src/network/networkd-network.c
@@ -187,7 +187,8 @@ static int network_verify(Network *network) {
network->match_kernel_version, network->match_arch,
NULL, NULL, NULL, NULL, NULL))
return log_debug_errno(SYNTHETIC_ERRNO(EINVAL),
- "%s: Conditions in the file do not match the system environment, skipping.", network->filename);
+ "%s: Conditions in the file do not match the system environment, skipping.",
+ network->filename);
(void) network_resolve_netdev_one(network, network->bond_name, NETDEV_KIND_BOND, &network->bond);
(void) network_resolve_netdev_one(network, network->bridge_name, NETDEV_KIND_BRIDGE, &network->bridge);
@@ -713,7 +714,8 @@ int config_parse_stacked_netdev(const char *unit,
}
if (!ifname_valid(rvalue)) {
- log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid netdev name in %s=, ignoring assignment: %s", lvalue, rvalue);
+ log_syntax(unit, LOG_ERR, filename, line, 0,
+ "Invalid netdev name in %s=, ignoring assignment: %s", lvalue, rvalue);
return 0;
}
@@ -727,7 +729,8 @@ int config_parse_stacked_netdev(const char *unit,
r = hashmap_put(*h, name, INT_TO_PTR(kind));
if (r < 0) {
- log_syntax(unit, LOG_ERR, filename, line, r, "Cannot add NetDev '%s' to network, ignoring assignment: %m", rvalue);
+ log_syntax(unit, LOG_ERR, filename, line, r,
+ "Cannot add NetDev '%s' to network, ignoring assignment: %m", rvalue);
return 0;
}