commit: 86879b6bfd4f6d8ce26945a5570e579bf28249f5 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> AuthorDate: Tue Dec 15 20:47:15 2020 +0000 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> CommitDate: Tue Jan 5 12:44:05 2021 +0000 URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=86879b6b
Add code style fixes and missing copyright headers Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org> net/dhcpcd.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/net/dhcpcd.sh b/net/dhcpcd.sh index e3410d8..1e1bbe0 100644 --- a/net/dhcpcd.sh +++ b/net/dhcpcd.sh @@ -1,4 +1,5 @@ # Copyright (c) 2007-2008 Roy Marples <[email protected]> +# Copyright (c) 2020 Gentoo Authors # Released under the 2-clause BSD license. # shellcheck shell=sh disable=SC1008 @@ -55,9 +56,9 @@ dhcpcd_start() done # Add our route metric if not given - case " $args " in + case " ${args} " in *" -m "*) ;; - *) [ "${metric:-0}" != 0 ] && args="$args -m $metric";; + *) [ "${metric:-0}" != 0 ] && args="${args} -m ${metric}";; esac # Bring up DHCP for this interface
