summaryrefslogtreecommitdiffstats
path: root/sbin/init/init.c
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1995-05-30 06:12:45 +0000
committerrgrimes <rgrimes@FreeBSD.org>1995-05-30 06:12:45 +0000
commitf3a2b348daf9fa6063c38d2d69563f732a2f80e7 (patch)
tree4d38911cf1e5e1ef56a662eddcbe2f706b2e6973 /sbin/init/init.c
parentf05428e4cd63dde97bac14b84dd146a5c00455e3 (diff)
downloadFreeBSD-src-f3a2b348daf9fa6063c38d2d69563f732a2f80e7.zip
FreeBSD-src-f3a2b348daf9fa6063c38d2d69563f732a2f80e7.tar.gz
Remove trailing whitespace.
Diffstat (limited to 'sbin/init/init.c')
-rw-r--r--sbin/init/init.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sbin/init/init.c b/sbin/init/init.c
index 4ac9c97..e7b6fa6 100644
--- a/sbin/init/init.c
+++ b/sbin/init/init.c
@@ -678,14 +678,14 @@ single_user()
return (state_func_t) requested_transition;
if (!WIFEXITED(status)) {
- if (WTERMSIG(status) == SIGKILL) {
- /*
- * reboot(8) killed shell?
+ if (WTERMSIG(status) == SIGKILL) {
+ /*
+ * reboot(8) killed shell?
*/
warning("single user shell terminated.");
sleep(STALL_TIMEOUT);
_exit(0);
- } else {
+ } else {
warning("single user shell terminated, restarting");
return (state_func_t) single_user;
}
@@ -797,7 +797,7 @@ start_session_db()
return (1);
}
return (0);
-
+
}
/*
@@ -1215,7 +1215,7 @@ multi_user()
/*
* If the administrator has not set the security level to -1
* to indicate that the kernel should not run multiuser in secure
- * mode, and the run script has not set a higher level of security
+ * mode, and the run script has not set a higher level of security
* than level 1, then put the kernel into secure mode.
*/
if (getsecuritylevel() == 0)
@@ -1391,7 +1391,7 @@ strk (char *p)
return 0;
c = *t;
- while (c == ' ' || c == '\t' )
+ while (c == ' ' || c == '\t' )
c = *++t;
if (!c) {
t = 0;
@@ -1401,7 +1401,7 @@ strk (char *p)
if (c == '\'') {
c = *++t;
q = t;
- while (c && c != '\'')
+ while (c && c != '\'')
c = *++t;
if (!c) /* unterminated string */
q = t = 0;
@@ -1411,7 +1411,7 @@ strk (char *p)
while (c && c != ' ' && c != '\t' )
c = *++t;
*t++ = 0;
- if (!c)
+ if (!c)
t = 0;
}
return q;
OpenPOWER on IntegriCloud