From: Roy Marples Date: Fri, 15 Aug 2008 03:31:37 +0000 (+0000) Subject: Fix cmp test. X-Git-Tag: v4.0.2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a01c3091db8e36d11547f327e7e46330edc94cbf;p=thirdparty%2Fdhcpcd.git Fix cmp test. --- 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