aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-08-29 07:47:52 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-08-29 07:47:52 +0000
commit62b031fb8283e625cd45ba910ded0338c7c147da (patch)
tree0d20e2d7d2509a6f363663115f373c30dc04b4c6
parenta6b7bdcf8caaf1fd36f522a795f1c4c5ff3c64ce (diff)
downloadbusybox-62b031fb8283e625cd45ba910ded0338c7c147da.tar.gz
label's dont work in v4 tunnels, patch by Eric Spakman
-rw-r--r--networking/ifupdown.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index afeec363a..78f2bb0f1 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -436,7 +436,7 @@ static int v4tunnel_up(struct interface_defn_t *ifd, execfn *exec)
result = execute("ip tunnel add %iface% mode sit remote "
"%endpoint% [[local %local%]] [[ttl %ttl%]]", ifd, exec);
result += execute("ip link set %iface% up", ifd, exec);
- result += execute("ip addr add %address%/%netmask% dev %iface% label %label%", ifd, exec);
+ result += execute("ip addr add %address%/%netmask% dev %iface%", ifd, exec);
result += execute("[[ ip route add ::/0 via %gateway% ]]", ifd, exec);
return( result);
}