From: Lennart Poettering Date: Thu, 28 Oct 2010 20:11:45 +0000 (+0200) Subject: systemctl: always show what and where for mount units in status output X-Git-Tag: v12~119 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=9feeba4bbb768a2564520b5d3e238c44fb3f6c7b;hp=ab58e29119798f9f15a537fcd31119342db177a2;p=elogind.git systemctl: always show what and where for mount units in status output --- diff --git a/src/systemctl.c b/src/systemctl.c index d710bcf44..4f4b6dd6d 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -1820,9 +1820,9 @@ static void print_status_info(UnitStatusInfo *i) { if (i->sysfs_path) printf("\t Device: %s\n", i->sysfs_path); - else if (i->where) + if (i->where) printf("\t Where: %s\n", i->where); - else if (i->what) + if (i->what) printf("\t What: %s\n", i->what); if (i->accept)