summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-04-16 17:23:41 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2020-04-17 14:37:12 +0200
commit9a506b7e9291d997a920af9ac299e7b834368119 (patch)
tree8834b6acd186a6e6cb3676dcb8bfc9508b4a7330
parentc5e346905952fef0f163d91522dd43333f1f219d (diff)
downloadsystemd-9a506b7e9291d997a920af9ac299e7b834368119.tar.gz
network: use "FooOverUDP" as one wordv245.5
The whole thing is one name, and I think it's confusing to break it up into separate words. (cherry picked from commit fac216635916eee9aa2b08b978bf60d97ac95179)
-rw-r--r--src/network/netdev/fou-tunnel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/network/netdev/fou-tunnel.c b/src/network/netdev/fou-tunnel.c
index 40abacd6f7..bc0dc185d3 100644
--- a/src/network/netdev/fou-tunnel.c
+++ b/src/network/netdev/fou-tunnel.c
@@ -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;