[libvirt] [PATCH] virsh: replace vshPrint with vshPrintExtra for snapshot list

Osier Yang jyang at redhat.com
Mon Feb 21 06:06:27 UTC 2011


Otherwise extra information will be printed even if "--quiet"
is specified.

* tools/virsh.c
---
 tools/virsh.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/virsh.c b/tools/virsh.c
index ce275f1..2837e0f 100644
--- a/tools/virsh.c
+++ b/tools/virsh.c
@@ -10000,8 +10000,8 @@ cmdSnapshotList(vshControl *ctl, const vshCmd *cmd)
     if (numsnaps < 0)
         goto cleanup;

-    vshPrint(ctl, " %-20s %-25s %s\n", _("Name"), _("Creation Time"), _("State"));
-    vshPrint(ctl, "---------------------------------------------------\n");
+    vshPrintExtra(ctl, " %-20s %-25s %s\n", _("Name"), _("Creation Time"), _("State"));
+    vshPrintExtra(ctl, "---------------------------------------------------\n");

     if (numsnaps) {
         if (VIR_ALLOC_N(names, numsnaps) < 0)
--
1.7.4




More information about the libvir-list mailing list