summaryrefslogtreecommitdiffstats
path: root/usr.bin/ctlstat
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2015-02-14 08:52:09 +0000
committermav <mav@FreeBSD.org>2015-02-14 08:52:09 +0000
commitce3fd33d9a28a62373afe390a26a18bb76293279 (patch)
treebfed09c6c633dc12b693de8d51fa91d9208ee8a8 /usr.bin/ctlstat
parentc85a72688762659213e049dceb4c5cef5384b06a (diff)
downloadFreeBSD-src-ce3fd33d9a28a62373afe390a26a18bb76293279.zip
FreeBSD-src-ce3fd33d9a28a62373afe390a26a18bb76293279.tar.gz
MFC r278362: Fix couple issues in ctlstat header printing.
Diffstat (limited to 'usr.bin/ctlstat')
-rw-r--r--usr.bin/ctlstat/ctlstat.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/ctlstat/ctlstat.c b/usr.bin/ctlstat/ctlstat.c
index e04aa54..3bfb248 100644
--- a/usr.bin/ctlstat/ctlstat.c
+++ b/usr.bin/ctlstat/ctlstat.c
@@ -449,7 +449,7 @@ ctlstat_standard(struct ctlstat_context *ctx) {
(F_LUNVAL(ctx) != 0) ? " " : "",
(F_LUNVAL(ctx) != 0) ? " " : "",
(F_LUNVAL(ctx) != 0) ? " " : "",
- (F_CPU(ctx) == 0) ? " CPU" : "");
+ (F_CPU(ctx)) ? " CPU" : "");
hdr_devs = 3;
} else {
if (F_CPU(ctx))
@@ -468,8 +468,9 @@ ctlstat_standard(struct ctlstat_context *ctx) {
if (bit_test(ctx->lun_mask, lun) == 0)
continue;
- fprintf(stdout, "%15.6s%d ",
- "lun", lun);
+ fprintf(stdout, "%15.6s%d %s",
+ "lun", lun,
+ (F_LUNVAL(ctx) != 0) ? " " : "");
hdr_devs++;
}
fprintf(stdout, "\n");
OpenPOWER on IntegriCloud