summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2009-04-20 10:08:12 +0000
committerRoy Marples <roy@marples.name>2009-04-20 10:08:12 +0000
commit34096866857748a452d7389c772221005a5fd73d (patch)
treebe8a2670315bfd5dde114b3a41b1eb09312a55b4
parentc1b631bf9332b0169d8a6a4d781ac8e2ba114be3 (diff)
downloaddhcpcd-34096866857748a452d7389c772221005a5fd73d.tar.xz
No need to quote here.
-rw-r--r--dhcpcd-run-hooks.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/dhcpcd-run-hooks.in b/dhcpcd-run-hooks.in
index ef0b0b70..15239c52 100644
--- a/dhcpcd-run-hooks.in
+++ b/dhcpcd-run-hooks.in
@@ -49,7 +49,7 @@ list_interfaces()
# but sed may not always be available at the time.
key_get_value()
{
- local key="$1" value= x= line=
+ local key=$1 value= x= line=
shift
if type sed >/dev/null 2>&1; then
@@ -69,7 +69,7 @@ key_get_value()
# but sed may not always be available at the time.
remove_markers()
{
- local m1="$1" m2="$2" x= line= in_marker=0
+ local m1=$1 m2=$2 x= line= in_marker=0
shift; shift
if type sed >/dev/null 2>&1; then