From: Roy Marples Date: Thu, 24 Apr 2008 14:50:04 +0000 (+0000) Subject: Fix line length X-Git-Tag: v4.0.2~453 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2a979d3a80ce9a44d7317a84143c9c16a71a564;p=thirdparty%2Fdhcpcd.git Fix line length --- diff --git a/dhcpcd.sh.in b/dhcpcd.sh.in index f7fb01bd..0779385e 100644 --- a/dhcpcd.sh.in +++ b/dhcpcd.sh.in @@ -27,7 +27,9 @@ do_hooks() { local x= r=0 - for x in @SYSCONFDIR@/dhcpcd-"$1"-hook.d/* @SYSCONFDIR@/dhcpcd-"$1"-hook; do + for x in @SYSCONFDIR@/dhcpcd-"$1"-hook.d/* \ + @SYSCONFDIR@/dhcpcd-"$1"-hook \ + ; do if [ -e "${x}" ]; then . "${x}" r=$((${r} + $?))