diff options
author | Steven Barth <cyrus@openwrt.org> | 2012-12-31 09:38:59 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2012-12-31 09:38:59 +0000 |
commit | 4c09d5dde3268f182f23ccbdef7523b0aa837c04 (patch) | |
tree | ca49a201b580807a6fba28503f714bd92611f611 /package | |
parent | 624eb36fff644f52cb3e4140c788a9dcaa992e66 (diff) | |
download | upstream-4c09d5dde3268f182f23ccbdef7523b0aa837c04.tar.gz upstream-4c09d5dde3268f182f23ccbdef7523b0aa837c04.tar.bz2 upstream-4c09d5dde3268f182f23ccbdef7523b0aa837c04.zip |
ipv6-support: Fix typo in dhcpv6-script * thanks to KarlHegbloom for reporting
SVN-Revision: 34940
Diffstat (limited to 'package')
-rw-r--r-- | package/network/ipv6/ipv6-support/Makefile | 2 | ||||
-rwxr-xr-x | package/network/ipv6/ipv6-support/files/dhcpv6.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/network/ipv6/ipv6-support/Makefile b/package/network/ipv6/ipv6-support/Makefile index 43ebb1f35d..7e2e5e91dc 100644 --- a/package/network/ipv6/ipv6-support/Makefile +++ b/package/network/ipv6/ipv6-support/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ipv6-support -PKG_VERSION:=2012-12-30 +PKG_VERSION:=2012-12-31 PKG_RELEASE:=1 include $(INCLUDE_DIR)/package.mk diff --git a/package/network/ipv6/ipv6-support/files/dhcpv6.sh b/package/network/ipv6/ipv6-support/files/dhcpv6.sh index 25355bedf2..299cf99f3d 100755 --- a/package/network/ipv6/ipv6-support/files/dhcpv6.sh +++ b/package/network/ipv6/ipv6-support/files/dhcpv6.sh @@ -30,7 +30,7 @@ setup_prefix_fallback "$fallback" "$network" "$device" # Operations in case of success -[ "$state" == "timeout" || "$state" == "unbound" ] && exit 0 +[ "$state" == "timeout" -o "$state" == "unbound" ] && exit 0 local peerdns config_get_bool peerdns "$network" peerdns 1 |