1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 08:34:45 +03:00

fix broken logic in r15272, r15273

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15274 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2009-04-19 17:12:02 +00:00
parent eb4ec858a3
commit aa9736360e

View File

@ -23,12 +23,11 @@ add_route() {
config_get gateway "$interface" gateway
}
# handle "0.0.0.0" and "interface" as "no gateway given"
# to allow defining gateway-less routes while still
# keeping the possibility to have static routes with a
# handle "0.0.0.0" as "no gateway given" to allow
# defining gateway-less routes while still keeping
# the possibility to have static routes with a
# proper gateway on interfaces with dynamic ips
[ "$gateway" = "0.0.0.0" -o \
"$gateway" = "interface" ] && gateway=""
[ "$gateway" = "0.0.0.0" ] && gateway=""
dest="${netmask:+-net "$target" netmask "$netmask"}"
dest="${dest:--host "$target"}"