From ceb67d42f511ab0ee62bed0c8744460e74c216bc Mon Sep 17 00:00:00 2001 From: Simon Barth Date: Mon, 10 Nov 2025 21:57:24 +0100 Subject: [PATCH] man: Fix systemd-analyze exit-status example output The output of `systemd-analyze exit-status` changed in commit e04ed6db6b44681b7a7876b9c4a1e6adaf877670, so that the exit-status class for EXIT_SUCCESS and EXIT_FAILURE is "libc" instead of "glibc". This commit makes the example output in the man-page match the actual output again. --- man/systemd-analyze.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/man/systemd-analyze.xml b/man/systemd-analyze.xml index fb95a3ec534..927748bdc5d 100644 --- a/man/systemd-analyze.xml +++ b/man/systemd-analyze.xml @@ -464,7 +464,7 @@ $ eog targets.svg <command>systemd-analyze exit-status <optional><replaceable>STATUS</replaceable>...</optional></command> This command prints a list of exit statuses along with their "class", i.e. the source of the - definition (one of glibc, systemd, LSB, or + definition (one of libc, systemd, LSB, or BSD), see the Process Exit Codes section in systemd.exec5. If no additional arguments are specified, all known statuses are shown. Otherwise, only the @@ -475,8 +475,8 @@ $ eog targets.svg $ systemd-analyze exit-status 0 1 {63..65} NAME STATUS CLASS -SUCCESS 0 glibc -FAILURE 1 glibc +SUCCESS 0 libc +FAILURE 1 libc - 63 - USAGE 64 BSD DATAERR 65 BSD -- 2.47.3