dnsmasq: prevent bad command line error when a dhcp pool has ignore set and the corresponding iface has only whitespace as value

SVN-Revision: 20048
lede-17.01
Jo-Philipp Wich 2010-03-08 03:52:04 +00:00
parent 60c17a9e9c
commit 4bbb272f48
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ dhcp_add() {
DNS_SERVERS="$DNS_SERVERS $dnsserver"
}
append_bool "$cfg" ignore "-2 $ifname" && return 0
append_bool "$cfg" ignore "-2 '$ifname'" && return 0
config_get proto "$net" proto
[ static = "$proto" ] || return 0