aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.d/resolv
diff options
context:
space:
mode:
authorJens Schweikhardt <schweikh@FreeBSD.org>2002-10-12 10:31:31 +0000
committerJens Schweikhardt <schweikh@FreeBSD.org>2002-10-12 10:31:31 +0000
commit143085107b0897e271fa76d7ac3316fb25aacf07 (patch)
treec750ff3f496fe6079fff457037e64eba1f20e162 /etc/rc.d/resolv
parentde77341b0d11974386a24a3a9bcc2d5457c5f73e (diff)
downloadsrc-143085107b0897e271fa76d7ac3316fb25aacf07.tar.gz
src-143085107b0897e271fa76d7ac3316fb25aacf07.zip
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
Notes
Notes: svn path=/head/; revision=104980
Diffstat (limited to 'etc/rc.d/resolv')
-rw-r--r--etc/rc.d/resolv6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc.d/resolv b/etc/rc.d/resolv
index cef6e8a4275e..647e3b7acb7e 100644
--- a/etc/rc.d/resolv
+++ b/etc/rc.d/resolv
@@ -55,8 +55,8 @@ mount_md()
# If there is a global system configuration file, suck it in.
#
if [ -r /etc/rc.subr ]; then
- . /etc/rc.subr
- load_rc_config $name
+ . /etc/rc.subr
+ load_rc_config $name
elif [ -r /etc/defaults/rc.conf ]; then
. /etc/defaults/rc.conf
source_rc_confs
@@ -108,7 +108,7 @@ if [ ! -L /tmp ]; then
chmod 01777 /tmp
fi
-if sysctl vfs.devfs.generation > /dev/null 2>&1 ; then
+if sysctl vfs.devfs.generation > /dev/null 2>&1; then
# we have DEVFS, no worries...
true
else