diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-03-03 21:23:12 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-03-03 21:23:12 +0100 |
commit | 4d7213b2747ddd87002f970ccc60b1a9ab637136 (patch) | |
tree | ddae01aaddd7530bc119ace060c467009da4a1f2 /src/shared/exit-status.c | |
parent | ca37242e52cbf90d6cdb3b26b2986b11ed1d5e91 (diff) |
core: move ShowStatus type into the core
Let's make the scope of the show-status stuff a bit smaller, and make it
private to the core, rather than shared API in shared/.
Diffstat (limited to 'src/shared/exit-status.c')
-rw-r--r-- | src/shared/exit-status.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/shared/exit-status.c b/src/shared/exit-status.c index c1c0861168..d860b55511 100644 --- a/src/shared/exit-status.c +++ b/src/shared/exit-status.c @@ -205,20 +205,3 @@ bool is_clean_exit_lsb(int code, int status, ExitStatusSet *success_status) { code == CLD_EXITED && (status == EXIT_NOTINSTALLED || status == EXIT_NOTCONFIGURED); } - -int parse_show_status(const char *v, ShowStatus *ret) { - int r; - - assert(v); - assert(ret); - - if (streq(v, "auto")) { - *ret = SHOW_STATUS_AUTO; - return 0; - } - r = parse_boolean(v); - if (r < 0) - return r; - *ret = r ? SHOW_STATUS_YES : SHOW_STATUS_NO; - return 0; -} |