From: Lennart Poettering Date: Thu, 7 Nov 2013 20:02:48 +0000 (+0100) Subject: systemctl: we show headers for list-units even when piped these days, hence do the... X-Git-Tag: v209~1536 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=0d49cfa264e8afc52526cd0cd73b2309dff498b2 systemctl: we show headers for list-units even when piped these days, hence do the same for list-jobs --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index b75f335ae..ad9d12548 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -1258,12 +1258,11 @@ static void list_jobs_print(struct job_info* jobs, size_t n) { shorten = true; } - if (on_tty()) - printf("%*s %-*s %-*s %-*s\n", - l0, "JOB", - l1, "UNIT", - l2, "TYPE", - l3, "STATE"); + printf("%*s %-*s %-*s %-*s\n", + l0, "JOB", + l1, "UNIT", + l2, "TYPE", + l3, "STATE"); for (i = 0, j = jobs; i < n; i++, j++) { _cleanup_free_ char *e = NULL; @@ -1286,8 +1285,7 @@ static void list_jobs_print(struct job_info* jobs, size_t n) { on = ansi_highlight(); off = ansi_highlight_off(); - if (on_tty()) - printf("\n%s%zu jobs listed%s.\n", on, n, off); + printf("\n%s%zu jobs listed%s.\n", on, n, off); } static int list_jobs(DBusConnection *bus, char **args) {