diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2026-04-26 10:15:18 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2026-04-27 01:45:25 +0000 |
| commit | a268af3447ebaa9712174ba2d226ffdc66f68e98 (patch) | |
| tree | 49e61fd8c0cf477f9e721353f8160db414370471 | |
| parent | d7338bb4914d120e5719d3216b23a509c49ed3be (diff) | |
kern/init_main.c: path is for the binary, not process
Reviewed by: imp, jilles
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Differential revision: https://reviews.freebsd.org/D56536
| -rw-r--r-- | sys/kern/init_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 39357b8d4440..cfca5d9d1296 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -709,7 +709,7 @@ static char init_path[MAXPATHLEN] = "/sbin/init:/sbin/oinit:/sbin/init.bak:/rescue/init"; #endif SYSCTL_STRING(_kern, OID_AUTO, init_path, CTLFLAG_RD, init_path, 0, - "Path used to search the init process"); + "Path used to search for the init binary"); /* * Shutdown timeout of init(8). |
