From: Lennart Poettering Date: Thu, 7 Nov 2013 20:28:15 +0000 (+0100) Subject: machinectl: show list headers even if we pipe, since that appears to be the usual way X-Git-Tag: v209~1533 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=74c7b1ed052fc42d9841a5d83d310fa96124c47c machinectl: show list headers even if we pipe, since that appears to be the usual way --- diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index 7feb7be3d..4b8351c98 100644 --- a/src/machine/machinectl.c +++ b/src/machine/machinectl.c @@ -84,8 +84,7 @@ static int list_machines(sd_bus *bus, char **args, unsigned n) { return r; } - if (on_tty()) - printf("%-32s %-9s %-16s\n", "MACHINE", "CONTAINER", "SERVICE"); + printf("%-32s %-9s %-16s\n", "MACHINE", "CONTAINER", "SERVICE"); r = sd_bus_message_enter_container(reply, SD_BUS_TYPE_ARRAY, "(ssso)"); if (r < 0) @@ -103,8 +102,7 @@ static int list_machines(sd_bus *bus, char **args, unsigned n) { if (r < 0) return bus_log_parse_error(r); - if (on_tty()) - printf("\n%u machines listed.\n", k); + printf("\n%u machines listed.\n", k); return 0; }