summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/network.subr6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/network.subr b/etc/network.subr
index 315de61..87f9ca6 100644
--- a/etc/network.subr
+++ b/etc/network.subr
@@ -46,7 +46,7 @@ ifn_start()
ifconfig_up ${ifn} && cfg=0
ipv4_up ${ifn} && cfg=0
ipx_up ${ifn} && cfg=0
- childif_create ${ifn} && cfg=0
+ childif_create ${ifn}
if [ "$cfg" -eq 0 ]; then
ifconfig ${ifn}
@@ -71,7 +71,7 @@ ifn_stop()
ipv4_down ${ifn} && cfg=0
ifconfig_down ${ifn} && cfg=0
ifscript_down ${ifn} && cfg=0
- childif_destroy ${ifn} && cfg=0
+ childif_destroy
if [ "$cfg" -eq 0 ]; then
echo -n " ${ifn}"
@@ -532,7 +532,7 @@ childif_create()
ifn_start $child
done
- return
+ return ${cfg}
}
# Destroy child interfaces.
OpenPOWER on IntegriCloud