summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-08-17 18:53:47 +0200
committerLennart Poettering <lennart@poettering.net>2010-08-17 18:53:47 +0200
commit85ad5b18ad226891fe2860ec7d10277ec35022e0 (patch)
tree96f233518454762ec24acb879dc4baec5608bd30 /src
parent1cba2c90e837b8ccff736890e223628275d4183d (diff)
systemctl: break output properly for 80ch terminals
Diffstat (limited to 'src')
-rw-r--r--src/systemctl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/systemctl.c b/src/systemctl.c
index a8a5e0c207..4f39cac07b 100644
--- a/src/systemctl.c
+++ b/src/systemctl.c
@@ -351,10 +351,10 @@ static int list_units(DBusConnection *bus, char **args, unsigned n) {
if (isatty(STDOUT_FILENO)) {
- printf("\nLOAD = Load State, reflects whether the unit configuration was properly loaded.\n"
- "ACTIVE = Active State, the high-level unit activation state, i.e. generalization of the substate.\n"
- "SUB = Substate, the low-level unit activation state, possible values depend on unit type.\n"
- "JOB = Job, shows pending jobs for the unit.\n");
+ printf("\nLOAD = Reflects whether the unit definition was properly loaded.\n"
+ "ACTIVE = The high-level unit activation state, i.e. generalization of SUB.\n"
+ "SUB = The low-level unit activation state, values depend on unit type.\n"
+ "JOB = Pending job for the unit.\n");
if (arg_all)
printf("\n%u units listed.\n", c);