diff options
author | Roy Marples <roy@marples.name> | 2007-11-28 15:45:03 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-11-28 15:45:03 +0000 |
commit | ac9279cc0d5a00bc17908b2914941186020cd3ce (patch) | |
tree | 850a4fe19917113e75bfd2e79d00b58208468503 /sh/rc-functions.sh | |
parent | 444f23e2d158389b22d40537fc9b027d9f575229 (diff) |
Massive whitespace cleanup
Diffstat (limited to 'sh/rc-functions.sh')
-rwxr-xr-x | sh/rc-functions.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sh/rc-functions.sh b/sh/rc-functions.sh index 571a0cf1..b6c7cbd8 100755 --- a/sh/rc-functions.sh +++ b/sh/rc-functions.sh @@ -63,7 +63,7 @@ is_net_fs() { is_union_fs() { [ ! -x /sbin/unionctl ] && return 1 - unionctl "$1" --list >/dev/null 2>/dev/null + unionctl "$1" --list >/dev/null 2>&1 } get_bootparam() { @@ -89,8 +89,8 @@ get_bootparam() { # Add our sbin to $PATH case "${PATH}" in - /lib/rc/sbin|/lib/rc/sbin:*) ;; - *) export PATH="/lib/rc/sbin:${PATH}" ;; + /lib/rc/sbin|/lib/rc/sbin:*);; + *) export PATH="/lib/rc/sbin:${PATH}";; esac # vim: set ts=4 : |