minor cleanup

SVN-Revision: 4939
master
Felix Fietkau 18 years ago
parent daa77961b6
commit f24a3a5199
  1. 7
      openwrt/package/base-files/default/lib/network/config.sh

@ -59,17 +59,14 @@ add_vlan() {
setup_interface() { setup_interface() {
local iface="$1" local iface="$1"
local config="$2" local config="$2"
local proto="$3" local proto
[ -n "$config" ] || { [ -n "$config" ] || {
config=$(find_config "$iface") config=$(find_config "$iface")
[ "$?" = 0 ] || return 1 [ "$?" = 0 ] || return 1
} }
[ -n "$proto" ] || { proto="${3:-$(config_get "$config" proto)}"
config_get proto "$config" proto
}
config_get iftype "$config" type config_get iftype "$config" type
# Setup VLAN interfaces # Setup VLAN interfaces

Loading…
Cancel
Save