1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-03-20 07:59:00 +00:00

virsh: fix non-literal string format

These are in the newly added -V output.
This commit is contained in:
Laine Stump 2010-11-09 17:37:05 -05:00
parent 60ae1c34ad
commit ff4a31d969

View File

@ -11546,8 +11546,8 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED)
vshPrint(ctl, _("Virsh command line tool of libvirt %s\n"), VERSION);
vshPrint(ctl, _("See web site at %s\n\n"), "http://libvirt.org/");
vshPrint(ctl, _("Compiled with support for:\n"));
vshPrint(ctl, _(" Hypervisors:"));
vshPrint(ctl, "%s", _("Compiled with support for:\n"));
vshPrint(ctl, "%s", _(" Hypervisors:"));
#ifdef WITH_XEN
vshPrint(ctl, " Xen");
#endif
@ -11583,7 +11583,7 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED)
#endif
vshPrint(ctl, "\n");
vshPrint(ctl, _(" Networking:"));
vshPrint(ctl, "%s", _(" Networking:"));
#ifdef WITH_REMOTE
vshPrint(ctl, " Remote");
#endif
@ -11610,7 +11610,7 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED)
#endif
vshPrint(ctl, "\n");
vshPrint(ctl, _(" Storage:"));
vshPrint(ctl, "%s", _(" Storage:"));
#ifdef WITH_STORAGE_DIR
vshPrint(ctl, " Dir");
#endif
@ -11634,7 +11634,7 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED)
#endif
vshPrint(ctl, "\n");
vshPrint(ctl, _(" Miscellaneous:"));
vshPrint(ctl, "%s", _(" Miscellaneous:"));
#ifdef ENABLE_SECDRIVER_APPARMOR
vshPrint(ctl, " AppArmor");
#endif