]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network: wrap some long lines
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 27 Feb 2019 12:34:51 +0000 (13:34 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 27 Feb 2019 12:35:19 +0000 (13:35 +0100)
src/network/networkd-network.c

index 75dd8b9e4e352c100eb8d2d785aa24aa20f6ad32..b413abacff7f922e92bf9f06888c63b2de274635 100644 (file)
@@ -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;
         }