From: Steven Barth Date: Mon, 31 Dec 2012 09:38:59 +0000 (+0000) Subject: ipv6-support: Fix typo in dhcpv6-script X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=9c3e26c5d905f99d5497355ccad6c7ba2ef811f4 ipv6-support: Fix typo in dhcpv6-script * thanks to KarlHegbloom for reporting SVN-Revision: 34940 --- 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