diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-08-25 03:14:04 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-08-25 03:14:04 +0200 |
commit | f3d41013e24a81b2c853393593d1d52c156826ec (patch) | |
tree | 962cf10be475f3e12910412f922e1b0c321693b9 /src/systemctl.c | |
parent | 584be568b99633eb48c21ece92e241de011ecc9a (diff) |
systemctl: rename a few status lines
Diffstat (limited to 'src/systemctl.c')
-rw-r--r-- | src/systemctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemctl.c b/src/systemctl.c index 0c33abb307..9da8303b2e 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -1613,7 +1613,7 @@ static void print_status_info(UnitStatusInfo *i) { continue; t = strv_join(p->argv, " "); - printf("\t Exited: %u (%s, code=%s, ", p->pid, strna(t), sigchld_code_to_string(p->code)); + printf("\t Process: %u (%s, code=%s, ", p->pid, strna(t), sigchld_code_to_string(p->code)); free(t); if (p->code == CLD_EXITED) { @@ -1642,7 +1642,7 @@ static void print_status_info(UnitStatusInfo *i) { printf("\t"); if (i->main_pid > 0) { - printf(" Main: %u", (unsigned) i->main_pid); + printf("Main PID: %u", (unsigned) i->main_pid); if (i->running) { char *t = NULL; |