summaryrefslogtreecommitdiffstats
path: root/dhcpcd-run-hooks.in
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-08-15 03:31:37 +0000
committerRoy Marples <roy@marples.name>2008-08-15 03:31:37 +0000
commita01c3091db8e36d11547f327e7e46330edc94cbf (patch)
tree49f22ce1346dcc4fe2c09c0ddbe8ed1c8276d7b1 /dhcpcd-run-hooks.in
parenta5ea73e73f08db717425db8c2894d599f6faf603 (diff)
downloaddhcpcd-a01c3091db8e36d11547f327e7e46330edc94cbf.tar.xz
Fix cmp test.
Diffstat (limited to 'dhcpcd-run-hooks.in')
-rw-r--r--dhcpcd-run-hooks.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpcd-run-hooks.in b/dhcpcd-run-hooks.in
index 00a555b2..47e6316d 100644
--- a/dhcpcd-run-hooks.in
+++ b/dhcpcd-run-hooks.in
@@ -41,7 +41,7 @@ list_interfaces()
change_file()
{
if type cmp >/dev/null 2>&1; then
- cmp -s "$1" "$2}"
+ cmp -s "$1" "$2"
elif type diff >/dev/null 2>&1; then
diff -q "$1" "$2" >/dev/null
else