diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-19 03:18:49 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-20 02:31:54 +0200 |
commit | d06dacd0020af7e31ff6089deff339b00ed979e3 (patch) | |
tree | 40d3db2c57f53955645e95df805b43913c6e3dde /src/util.h | |
parent | 8a2b3c097b5ebd53348700f591e50530a82b5cea (diff) |
service/systemctl: don't consider LSB exit codes 5 and 6 as failure, and decode exit codes in systemctl
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h index 97e1b1ba41..e8d9b3e74b 100644 --- a/src/util.h +++ b/src/util.h @@ -253,6 +253,7 @@ char *format_timespan(char *buf, size_t l, usec_t t); int make_stdio(int fd); bool is_clean_exit(int code, int status); +bool is_clean_exit_lsb(int code, int status); unsigned long long random_ull(void); |