From e04ed6db6b44681b7a7876b9c4a1e6adaf877670 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 29 Jul 2019 19:05:25 +0200 Subject: =?UTF-8?q?exit-status:=20rename=20EXIT=5FSTATUS=5FGLIBC=20?= =?UTF-8?q?=E2=86=92=20EXIT=5FSTATUS=5FLIBC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After all these two exit codes are defined by ISO C as part of the C library, and it's not the GNU implementation defines them. --- src/shared/exit-status.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/shared/exit-status.h') diff --git a/src/shared/exit-status.h b/src/shared/exit-status.h index d6da8c19b9..9ea147c842 100644 --- a/src/shared/exit-status.h +++ b/src/shared/exit-status.h @@ -75,11 +75,11 @@ enum { }; typedef enum ExitStatusClass { - EXIT_STATUS_GLIBC = 1 << 0, /* libc EXIT_STATUS/EXIT_FAILURE */ + EXIT_STATUS_LIBC = 1 << 0, /* libc EXIT_STATUS/EXIT_FAILURE */ EXIT_STATUS_SYSTEMD = 1 << 1, /* systemd's own exit codes */ EXIT_STATUS_LSB = 1 << 2, /* LSB exit codes */ EXIT_STATUS_BSD = 1 << 3, /* BSD (EX_xyz) exit codes */ - EXIT_STATUS_FULL = EXIT_STATUS_GLIBC | EXIT_STATUS_SYSTEMD | EXIT_STATUS_LSB | EXIT_STATUS_BSD, + EXIT_STATUS_FULL = EXIT_STATUS_LIBC | EXIT_STATUS_SYSTEMD | EXIT_STATUS_LSB | EXIT_STATUS_BSD, } ExitStatusClass; typedef struct ExitStatusSet { -- cgit v1.2.1