From d18161d2dfe15efebe2a25a06895bdc1eb04bf71 Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Sun, 14 Jan 2007 22:29:13 +0000
Subject: [PATCH] add checks for {ip,ip6}addr in the network config

SVN-Revision: 6099
---
 package/base-files/files/lib/network/config.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh
index f3ead6a791..96890acacd 100755
--- a/package/base-files/files/lib/network/config.sh
+++ b/package/base-files/files/lib/network/config.sh
@@ -117,8 +117,8 @@ setup_interface() {
 			config_get gateway "$config" gateway
 			config_get dns "$config" dns
 			
-			$DEBUG ifconfig "$iface" "$ipaddr" netmask "$netmask"
-			$DEBUG ifconfig "$iface" inet6 add "$ip6addr" 
+			[ -z "$ipaddr" ] || $DEBUG ifconfig "$iface" "$ipaddr" netmask "$netmask"
+			[ -z "$ip6addr" ] || $DEBUG ifconfig "$iface" inet6 add "$ip6addr" 
 			[ -z "$gateway" ] || route add default gw "$gateway"
 			[ -z "$dns" -o -f /tmp/resolv.conf.auto ] || {
 				for ns in $dns; do
-- 
2.30.2