summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorajacoutot <ajacoutot@openbsd.org>2017-01-24 01:11:11 +0000
committerajacoutot <ajacoutot@openbsd.org>2017-01-24 01:11:11 +0000
commit6508d6bd62132bf80077dffbebf39cdf44bf16cc (patch)
treef2b0e1e3a38490b45fc885ef1bf9a63032da4d1e /etc
parentThe /p modifier now takes a TID, while here add a missing argument (diff)
downloadwireguard-openbsd-6508d6bd62132bf80077dffbebf39cdf44bf16cc.tar.xz
wireguard-openbsd-6508d6bd62132bf80077dffbebf39cdf44bf16cc.zip
Whitespace.
Diffstat (limited to 'etc')
-rw-r--r--etc/rc.d/rc.subr6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc.d/rc.subr b/etc/rc.d/rc.subr
index 2297bee7f6e..33ca068790c 100644
--- a/etc/rc.d/rc.subr
+++ b/etc/rc.d/rc.subr
@@ -1,4 +1,4 @@
-# $OpenBSD: rc.subr,v 1.116 2016/09/07 13:12:42 ajacoutot Exp $
+# $OpenBSD: rc.subr,v 1.117 2017/01/24 01:11:11 ajacoutot Exp $
#
# Copyright (c) 2010, 2011, 2014-2016 Antoine Jacoutot <ajacoutot@openbsd.org>
# Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -99,7 +99,7 @@ _rc_wait() {
_rc_quirks() {
# special care needed for spamlogd to avoid starting it up and failing
# all the time
- if [ X"${spamd_flags}" = X"NO" -o X"${spamd_black}" != X"NO" ]; then
+ if [ X"${spamd_flags}" = X"NO" -o X"${spamd_black}" != X"NO" ]; then
spamlogd_flags=NO
fi
@@ -201,7 +201,7 @@ rc_cmd() {
fi
[ -z "${INRC}" ] && _rc_do rc_check && exit 0
echo $_n "${INRC:+ }${_name}"
- while true; do # no real loop, only needed to break
+ while true; do # no real loop, only needed to break
if type rc_pre >/dev/null; then
_rc_do rc_pre || break
fi