]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network: use "FooOverUDP" as one word 15452/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 16 Apr 2020 15:23:41 +0000 (17:23 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 16 Apr 2020 15:23:41 +0000 (17:23 +0200)
The whole thing is one name, and I think it's confusing to break it
up into separate words.

src/network/netdev/fou-tunnel.c

index 40abacd6f75e9ea94d8ef94c229c94672be1934a..bc0dc185d3a444121995d4629d2c9b680e1a3754 100644 (file)
@@ -168,7 +168,7 @@ int config_parse_ip_protocol(
                 r = safe_atou(rvalue, &protocol);
                 if (r < 0)
                         log_syntax(unit, LOG_ERR, filename, line, r,
-                                   "Failed to parse IP protocol '%s' for Foo over UDP tunnel, "
+                                   "Failed to parse IP protocol '%s' for FooOverUDP tunnel, "
                                    "ignoring assignment: %m", rvalue);
                 return 0;
         }
@@ -213,7 +213,7 @@ int config_parse_fou_tunnel_address(
         r = in_addr_from_string_auto(rvalue, f, addr);
         if (r < 0)
                 log_syntax(unit, LOG_ERR, filename, line, r,
-                           "Foo over UDP tunnel '%s' address is invalid, ignoring assignment: %s",
+                           "FooOverUDP tunnel '%s' address is invalid, ignoring assignment: %s",
                            lvalue, rvalue);
 
         return 0;