diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-11 03:49:22 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-11 03:49:22 +0200 |
commit | dce3acd2e2447a9de642768f86e39d7c9d5bee81 (patch) | |
tree | ebac90bd5e66c7cbcf3c122637eb606c8074f754 /src/systemctl.c | |
parent | b12c1e7cf744a5e28db5a29e89377496893c1ab8 (diff) | |
parent | 17bb73821c750f8df876114e6d5e116537f335e5 (diff) |
Merge branch 'master' of ssh://git.freedesktop.org/git/systemd
Diffstat (limited to 'src/systemctl.c')
-rw-r--r-- | src/systemctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/systemctl.c b/src/systemctl.c index d90471773e..05e6ac9147 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -1100,9 +1100,6 @@ static void print_status_info(UnitStatusInfo *i) { else if (i->what) printf("\t What: %s\n", i->what); - if (i->status_text) - printf("\t Status: \"%s\"\n", i->status_text); - if (i->accept) printf("\tAccepted: %u; Connected: %u\n", i->n_accepted, i->n_connections); @@ -1175,6 +1172,9 @@ static void print_status_info(UnitStatusInfo *i) { printf("\n"); } + if (i->status_text) + printf("\t Status: \"%s\"\n", i->status_text); + if (i->default_control_group) { unsigned c; |