summaryrefslogtreecommitdiff
path: root/pm
diff options
context:
space:
mode:
authorVictor Lowther <victor.lowther@gmail.com>2009-12-06 13:32:33 -0600
committerVictor Lowther <victor.lowther@gmail.com>2009-12-06 13:32:33 -0600
commitf7df23f2928f63c38ef4b307b4312787f1a715bc (patch)
tree3bbb3cb1c5df978dccf13b0bc6241e684cc8db1f /pm
parentdc0963283565bd67154ed8584f8c3f28b43b3807 (diff)
Resolve bug# 25427
Diffstat (limited to 'pm')
-rw-r--r--pm/functions.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/pm/functions.in b/pm/functions.in
index 0aba5ea..4fb9d1f 100644
--- a/pm/functions.in
+++ b/pm/functions.in
@@ -8,7 +8,7 @@
is_set()
{
case ${1-UNSET} in
- true|yes|TRUE|YES|on|ON|1'') return 0;;
+ true|yes|TRUE|YES|on|ON|1|'') return 0;;
false|FALSE|no|NO|off|OFF|0|UNSET) return 1;;
*) return 2;;
esac