]> xenbits.xensource.com Git - libvirt.git/commitdiff
virsh: Format -V output properly
authorMichal Privoznik <mprivozn@redhat.com>
Thu, 24 Nov 2022 07:50:41 +0000 (08:50 +0100)
committerMichal Privoznik <mprivozn@redhat.com>
Thu, 24 Nov 2022 14:23:39 +0000 (15:23 +0100)
When displaying long version (virsh -V), the 'Virtuozzo Storage'
substring lacks leading space and thus produces awful output.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
tools/virsh.c

index 5696941550051f3a7afa81b1495bcea23fdddf53..ad11f4a9ac14dbcc0fef1f7274950eb24b435830 100644 (file)
@@ -586,7 +586,7 @@ virshShowVersion(vshControl *ctl G_GNUC_UNUSED)
     vshPrint(ctl, " ZFS");
 #endif
 #ifdef WITH_STORAGE_VSTORAGE
-    vshPrint(ctl, "Virtuozzo Storage");
+    vshPrint(ctl, " Virtuozzo Storage");
 #endif
     vshPrint(ctl, "\n");