[systemd-commits] src/systemctl.c
Lennart Poettering
lennart at kemper.freedesktop.org
Tue Mar 29 09:55:19 PDT 2011
src/systemctl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 964d124efad8a2fe07141338cb4ef674f7217fe2
Author: Lennart Poettering <lennart at poettering.net>
Date: Tue Mar 29 18:32:46 2011 +0200
systemctl: don't truncate description when using pager
https://bugs.freedesktop.org/show_bug.cgi?id=35725
diff --git a/src/systemctl.c b/src/systemctl.c
index 599894e..1507b52 100644
--- a/src/systemctl.c
+++ b/src/systemctl.c
@@ -387,7 +387,7 @@ static void output_units_list(const struct unit_info *unit_infos, unsigned c) {
if (on_tty()) {
printf("%-25s %-6s %-*s %-*s %-*s", "UNIT", "LOAD",
active_len, "ACTIVE", sub_len, "SUB", job_len, "JOB");
- if (columns() >= 80+12 || arg_full)
+ if (columns() >= 80+12 || arg_full || !arg_no_pager)
printf(" %s\n", "DESCRIPTION");
else
printf("\n");
@@ -440,7 +440,7 @@ static void output_units_list(const struct unit_info *unit_infos, unsigned c) {
if (u->job_id == 0)
printf(" %-*s", job_len, "");
- if (arg_full)
+ if (arg_full || !arg_no_pager)
printf(" %s", u->description);
else
printf(" %.*s", columns() - a - b - 1, u->description);
More information about the systemd-commits
mailing list