From: Iago López Galeiras Date: Fri, 11 Dec 2020 12:21:54 +0000 (+0100) Subject: exit-status: fix mappings comment X-Git-Tag: v248-rc1~377 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=abcd208840069cc9e30fdad6b447cc9f28740cd1;p=thirdparty%2Fsystemd.git exit-status: fix mappings comment It didn't reflect the current status. --- diff --git a/src/shared/exit-status.c b/src/shared/exit-status.c index b71dd7afd52..db978fb8969 100644 --- a/src/shared/exit-status.c +++ b/src/shared/exit-status.c @@ -18,8 +18,8 @@ const ExitStatusMapping exit_status_mappings[256] = { * 8…63 │ (Currently unmapped) * 64…78 │ BSD defined exit codes * 79…199 │ (Currently unmapped) - * 200…242 │ systemd's private error codes (might be extended to 254 in future development) - * 243…254 │ (Currently unmapped, but see above) + * 200…243 │ systemd's private error codes (might be extended to 254 in future development) + * 244…254 │ (Currently unmapped, but see above) * * 255 │ EXIT_EXCEPTION (We use this to propagate exit-by-signal events. It's frequently used by others apps (like bash) * │ to indicate exit reason that cannot really be expressed in a single exit status value — such as a propagated