git: 2a69943c7b65 - stable/13 - daemon: kill off some stray blank lines
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 09 Apr 2023 23:57:59 UTC
The branch stable/13 has been updated by kevans:
URL: https://cgit.FreeBSD.org/src/commit/?id=2a69943c7b653dced1217fbfe74cd68019d19c18
commit 2a69943c7b653dced1217fbfe74cd68019d19c18
Author: Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2023-03-18 06:04:35 +0000
Commit: Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2023-04-09 22:49:51 +0000
daemon: kill off some stray blank lines
Overlooked in review; mea culpa.
Reported by: jrtc27
(cherry picked from commit 6b49a630f441e1a9e8c8e57d2bb71e589d95872c)
---
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)
{