]> git.ipfire.org Git - thirdparty/dhcpcd.git/commitdiff
Fix cmp test.
authorRoy Marples <roy@marples.name>
Fri, 15 Aug 2008 03:31:37 +0000 (03:31 +0000)
committerRoy Marples <roy@marples.name>
Fri, 15 Aug 2008 03:31:37 +0000 (03:31 +0000)
dhcpcd-run-hooks.in

index 00a555b2686738a9294251a2e94b63d870a7cf49..47e6316df2b12498ab730253db246b98e4b519d5 100644 (file)
@@ -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