summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/archdep
diff options
context:
space:
mode:
authorschweikh <schweikh@FreeBSD.org>2002-10-12 10:31:31 +0000
committerschweikh <schweikh@FreeBSD.org>2002-10-12 10:31:31 +0000
commitb7d872536535fe8afd8ad5080a504fa41a77c095 (patch)
treec750ff3f496fe6079fff457037e64eba1f20e162 /etc/rc.d/archdep
parentc60d03847fad771361b5a5590015bfe65a1b3023 (diff)
downloadFreeBSD-src-b7d872536535fe8afd8ad5080a504fa41a77c095.zip
FreeBSD-src-b7d872536535fe8afd8ad5080a504fa41a77c095.tar.gz
Fix style bugs:
* Space -> tabs conversion. * Removed blanks before semicolon in "if ... ; then". * Proper indentation of misindented lines. * Put a full stop after some comments. * Removed whitespace at end of line. Approved by: silence from gordon
Diffstat (limited to 'etc/rc.d/archdep')
-rw-r--r--etc/rc.d/archdep8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/rc.d/archdep b/etc/rc.d/archdep
index 28bf7bc..2935283 100644
--- a/etc/rc.d/archdep
+++ b/etc/rc.d/archdep
@@ -17,7 +17,7 @@ load_rc_config $name
#
unaligned_warnings()
{
- if ! checkyesno unaligned_print ; then
+ if ! checkyesno unaligned_print; then
sysctl machdep.unaligned_print=0
fi
}
@@ -26,7 +26,7 @@ unaligned_warnings()
#
osf1_compat()
{
- if checkyesno osf1_enable ; then
+ if checkyesno osf1_enable; then
echo -n ' OSF/1'
if ! kldstat -v | grep osf1_ecoff > /dev/null; then
kldload osf1 > /dev/null 2>&1
@@ -38,7 +38,7 @@ osf1_compat()
#
ibcs2_compat()
{
- if checkyesno ibcs2_enable ; then
+ if checkyesno ibcs2_enable; then
echo -n ' ibcs2'
kldload ibcs2 > /dev/null 2>&1
case ${ibcs2_loaders} in
@@ -57,7 +57,7 @@ ibcs2_compat()
#
x10_daemon()
{
- if checkyesno xtend_enable ; then
+ if checkyesno xtend_enable; then
echo -n ' xtend'
/usr/libexec/xtend
fi
OpenPOWER on IntegriCloud