git: 6b49a630f441 - main - daemon: kill off some stray blank lines
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 18 Mar 2023 06:05:56 UTC
The branch main has been updated by kevans:
URL: https://cgit.FreeBSD.org/src/commit/?id=6b49a630f441e1a9e8c8e57d2bb71e589d95872c
commit 6b49a630f441e1a9e8c8e57d2bb71e589d95872c
Author: Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2023-03-18 06:04:35 +0000
Commit: Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2023-03-18 06:05:43 +0000
daemon: kill off some stray blank lines
Overlooked in review; mea culpa.
Reported by: jrtc27
---
usr.sbin/daemon/daemon.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/usr.sbin/daemon/daemon.c b/usr.sbin/daemon/daemon.c
index eb69fc87a827..54e2aeea6874 100644
--- a/usr.sbin/daemon/daemon.c
+++ b/usr.sbin/daemon/daemon.c
@@ -97,7 +97,6 @@ static void daemon_sleep(time_t, long);
static void daemon_state_init(struct daemon_state *);
static void daemon_terminate(struct daemon_state *);
-
static volatile sig_atomic_t terminate = 0;
static volatile sig_atomic_t child_gone = 0;
static volatile sig_atomic_t pid = 0;
@@ -381,7 +380,6 @@ restart:
daemon_terminate(&state);
}
-
/* fork succeeded, this is child's branch or supervision is disabled */
if (pid == 0) {
pidfile_write(state.child_pidfh);
@@ -755,7 +753,6 @@ daemon_state_init(struct daemon_state *state)
};
}
-
static _Noreturn void
daemon_terminate(struct daemon_state *state)
{