diff options
author | Kerin Millar <kfm@plushkava.net> | 2023-01-15 19:30:35 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-01-15 20:36:57 +0000 |
commit | 315341e5af9dad09ca4e5c1ff8b16e3c0fc72898 (patch) | |
tree | bb873b80d032fac64aed8c1f9ac37cd83e34b0df /net | |
parent | net/l2tp.sh: Favour IFACE over IFVAR in an informational message (diff) | |
download | netifrc-315341e5af9dad09ca4e5c1ff8b16e3c0fc72898.tar.gz netifrc-315341e5af9dad09ca4e5c1ff8b16e3c0fc72898.tar.bz2 netifrc-315341e5af9dad09ca4e5c1ff8b16e3c0fc72898.zip |
net/l2tp.sh: Really favour IFACE over IFVAR in an informational message
The previous commit intended to replace an instance of IFVAR with IFACE.
Instead, it replaced with IFNAME, which means nothing to netifrc.
Frustratingly, I had realised my error at the time of submitting the patch,
yet still managed to attach a bad one. Make it right.
Signed-off-by: Kerin Millar <kfm@plushkava.net>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/l2tp.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/l2tp.sh b/net/l2tp.sh index 2221d26..aa8e3fd 100644 --- a/net/l2tp.sh +++ b/net/l2tp.sh @@ -39,7 +39,7 @@ l2tp_pre_start() { elif ! declared_tunnel=$(_l2tp_parse_opts "${l2tptunnel}" "local peer_tunnel_id remote tunnel_id" "encap"); then eend 1 "${key} is missing at least one required parameter" elif set -- "${tunnel_id}"; eval "${declared_tunnel}"; [ "$1" != "${tunnel_id}" ]; then - eend 1 "${key} defines a \"tunnel_id\" parameter that contradicts l2tpsession_${IFNAME}" + eend 1 "${key} defines a \"tunnel_id\" parameter that contradicts l2tpsession_${IFACE:?}" elif _l2tp_should_add_tunnel "${tunnel_id}" "${declared_tunnel}"; set -- $?; [ "$1" -eq 2 ]; then eend 1 "Tunnel #${tunnel_id} exists but its properties mismatch those defined by ${key}" elif [ "$1" -eq 1 ]; then |