diff options
author | Travis Kemen <thepeople@openwrt.org> | 2007-11-28 04:11:36 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2007-11-28 04:11:36 +0000 |
commit | 031b47be1571ce0e04a1eb60600b5144febc19d5 (patch) | |
tree | fe19bc09e8c19d7777c976dd8ade0b0f33120cda /package/dnsmasq/files | |
parent | 38101a0cdc903b6f07bea96bea1fa8853ef0a787 (diff) | |
download | upstream-031b47be1571ce0e04a1eb60600b5144febc19d5.tar.gz upstream-031b47be1571ce0e04a1eb60600b5144febc19d5.tar.bz2 upstream-031b47be1571ce0e04a1eb60600b5144febc19d5.zip |
use instead of closes #2759
SVN-Revision: 9612
Diffstat (limited to 'package/dnsmasq/files')
-rw-r--r-- | package/dnsmasq/files/dnsmasq.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/dnsmasq/files/dnsmasq.init b/package/dnsmasq/files/dnsmasq.init index 69f499a7dc..776daddb41 100644 --- a/package/dnsmasq/files/dnsmasq.init +++ b/package/dnsmasq/files/dnsmasq.init @@ -23,7 +23,7 @@ append_bool() { local value="$3" local _loctmp config_get_bool _loctmp "$section" "$option" - [ "$_loctmp" -gt 0 ] && append args "$3" + [ "$_loctmp" -gt 0 ] && append args "$value" } append_parm() { |