]> xenbits.xensource.com Git - libvirt.git/commit
virsh: Fix domifaddr output in quiet mode
authorLuyao Huang <lhuang@redhat.com>
Fri, 3 Apr 2015 09:41:03 +0000 (17:41 +0800)
committerMichal Privoznik <mprivozn@redhat.com>
Fri, 3 Apr 2015 10:23:03 +0000 (12:23 +0200)
commit156fde0b1a7d9421403401b837152990a900c88b
tree0b640ce4e3b43b79e0d474d2b7844cf76bab8e5a
parent66fe31d12622cda48ea33005d2474ec8ed69a7b9
virsh: Fix domifaddr output in quiet mode

In virsh we have two printing functions: vshPrint() which prints a
string onto stdout and vshPrintExtra() which does not print anything
if virsh is run in quiet mode. Usually, the former is used to print
actual results, while the latter to print strings like table headers
and other formatting stuff. However, in cmdDomIfAddr we have
mistakenly used vshPrintExtra even for actual data. After this patch,
the output should look like the following:

  # virsh -q domifaddr test3 --source agent
  lo         00:00:00:00:00:00    ipv4         127.0.0.1/8
  -          -                    ipv6         ::1/128
  ens8       52:54:00:1a:cb:3f    ipv6         fe80::5054:ff:fe1a:cb3f/64
  virbr0     52:54:00:db:51:e7    ipv4         192.168.122.1/24
  virbr0-nic 52:54:00:db:51:e7    N/A          N/A

Signed-off-by: Luyao Huang <lhuang@redhat.com>
tools/virsh-domain-monitor.c