aboutsummaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2012-02-03 13:50:35 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2012-02-03 13:58:08 +0100
commite88c1e1781f453db2de6ea46cc574c237c042a6a (patch)
tree3e8e3836d40fe2050e5b99462a5e9f3e7ec6c7e9 /functions
parent05d1c04cf9e5916de8550115dc578e91d29651cd (diff)
downloadinitscripts-e88c1e1781f453db2de6ea46cc574c237c042a6a.tar.xz
Small style cleanup
* Add whitespace to arithmetic expressions. * Use boolean logic for semantically boolean variables. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'functions')
-rw-r--r--functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions b/functions
index 24da795..833711b 100644
--- a/functions
+++ b/functions
@@ -662,7 +662,7 @@ need_root() {
# Quit script if it's not running by root
# This can be disabled in scripts sourcing functions by setting NEED_ROOT=0
# A local call to need_root can be done to ensure part of script need root privilege
-(( ${NEED_ROOT:-0} == 1 )) && need_root
+(( NEED_ROOT )) && need_root
# End of file
# vim: set ts=2 sw=2 noet: