summaryrefslogtreecommitdiff
path: root/src/network
diff options
context:
space:
mode:
authorLuca Boccassi <bluca@debian.org>2023-01-11 09:32:50 +0000
committerGitHub <noreply@github.com>2023-01-11 09:32:50 +0000
commitfae081492e6ef586b301b78a06caeada39df37e6 (patch)
treefd5b655824c1d5857ae86414ba3b3f1ef2c93d6e /src/network
parentc8add4c2e8e84a176b11a1ff83a2d319d1738304 (diff)
parentbf4a5ac804d85a1e8df8226e8595219aa6fdafae (diff)
downloadsystemd-fae081492e6ef586b301b78a06caeada39df37e6.tar.gz
Merge pull request #26014 from yuwata/network-l2tp-fixes
network: L2TP fixlets
Diffstat (limited to 'src/network')
-rw-r--r--src/network/netdev/l2tp-tunnel.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/network/netdev/l2tp-tunnel.c b/src/network/netdev/l2tp-tunnel.c
index 7d51a619bd..547de2418c 100644
--- a/src/network/netdev/l2tp-tunnel.c
+++ b/src/network/netdev/l2tp-tunnel.c
@@ -521,7 +521,7 @@ int config_parse_l2tp_tunnel_local_address(
return log_oom();
}
- type = l2tp_local_address_type_from_string(rvalue);
+ type = l2tp_local_address_type_from_string(addr_or_type);
if (type >= 0) {
free_and_replace(t->local_ifname, ifname);
t->local_address_type = type;
@@ -534,15 +534,15 @@ int config_parse_l2tp_tunnel_local_address(
return 0;
}
- r = in_addr_from_string_auto(rvalue, &f, &a);
+ r = in_addr_from_string_auto(addr_or_type, &f, &a);
if (r < 0) {
log_syntax(unit, LOG_WARNING, filename, line, r,
- "Invalid L2TP Tunnel local address specified, ignoring assignment: %s", rvalue);
+ "Invalid L2TP Tunnel local address \"%s\" specified, ignoring assignment: %s", addr_or_type, rvalue);
return 0;
}
if (in_addr_is_null(f, &a)) {
- log_syntax(unit, LOG_WARNING, filename, line, r,
+ log_syntax(unit, LOG_WARNING, filename, line, 0,
"L2TP Tunnel local address cannot be null, ignoring assignment: %s", rvalue);
return 0;
}
@@ -598,7 +598,7 @@ int config_parse_l2tp_tunnel_remote_address(
}
if (in_addr_is_null(f, &a)) {
- log_syntax(unit, LOG_WARNING, filename, line, r,
+ log_syntax(unit, LOG_WARNING, filename, line, 0,
"L2TP Tunnel remote address cannot be null, ignoring assignment: %s", rvalue);
return 0;
}