aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-09-19 14:43:29 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-09-19 14:43:29 +0000
commit6b882b579f215c46fbcb066d0147b02f56fc8b4b (patch)
tree750528a6deca6b8d10e57385e120265e5905d5d3 /package
parentc4cd59816161bd0df725f62250142a0a4aa50504 (diff)
downloadupstream-6b882b579f215c46fbcb066d0147b02f56fc8b4b.tar.gz
upstream-6b882b579f215c46fbcb066d0147b02f56fc8b4b.tar.bz2
upstream-6b882b579f215c46fbcb066d0147b02f56fc8b4b.zip
support true and false in config_get_bool
SVN-Revision: 8840
Diffstat (limited to 'package')
-rwxr-xr-xpackage/base-files/files/etc/functions.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/base-files/files/etc/functions.sh b/package/base-files/files/etc/functions.sh
index a613e1190b..284ed4c14f 100755
--- a/package/base-files/files/etc/functions.sh
+++ b/package/base-files/files/etc/functions.sh
@@ -127,8 +127,8 @@ config_get_bool() {
local _tmp
config_get "_tmp" "$2" "$3"
case "$_tmp" in
- 1|on|enabled) export ${NO_EXPORT:+-n} "$1=1";;
- 0|off|disabled) export ${NO_EXPORT:+-n} "$1=0";;
+ 1|on|true|enabled) export ${NO_EXPORT:+-n} "$1=1";;
+ 0|off|false|disabled) export ${NO_EXPORT:+-n} "$1=0";;
*) eval "$1=${4:-0}";;
esac
}