mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
virsh: fix non-literal string format
These are in the newly added -V output.
This commit is contained in:
parent
60ae1c34ad
commit
ff4a31d969
@ -11546,8 +11546,8 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED)
|
|||||||
vshPrint(ctl, _("Virsh command line tool of libvirt %s\n"), VERSION);
|
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, _("See web site at %s\n\n"), "http://libvirt.org/");
|
||||||
|
|
||||||
vshPrint(ctl, _("Compiled with support for:\n"));
|
vshPrint(ctl, "%s", _("Compiled with support for:\n"));
|
||||||
vshPrint(ctl, _(" Hypervisors:"));
|
vshPrint(ctl, "%s", _(" Hypervisors:"));
|
||||||
#ifdef WITH_XEN
|
#ifdef WITH_XEN
|
||||||
vshPrint(ctl, " Xen");
|
vshPrint(ctl, " Xen");
|
||||||
#endif
|
#endif
|
||||||
@ -11583,7 +11583,7 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED)
|
|||||||
#endif
|
#endif
|
||||||
vshPrint(ctl, "\n");
|
vshPrint(ctl, "\n");
|
||||||
|
|
||||||
vshPrint(ctl, _(" Networking:"));
|
vshPrint(ctl, "%s", _(" Networking:"));
|
||||||
#ifdef WITH_REMOTE
|
#ifdef WITH_REMOTE
|
||||||
vshPrint(ctl, " Remote");
|
vshPrint(ctl, " Remote");
|
||||||
#endif
|
#endif
|
||||||
@ -11610,7 +11610,7 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED)
|
|||||||
#endif
|
#endif
|
||||||
vshPrint(ctl, "\n");
|
vshPrint(ctl, "\n");
|
||||||
|
|
||||||
vshPrint(ctl, _(" Storage:"));
|
vshPrint(ctl, "%s", _(" Storage:"));
|
||||||
#ifdef WITH_STORAGE_DIR
|
#ifdef WITH_STORAGE_DIR
|
||||||
vshPrint(ctl, " Dir");
|
vshPrint(ctl, " Dir");
|
||||||
#endif
|
#endif
|
||||||
@ -11634,7 +11634,7 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED)
|
|||||||
#endif
|
#endif
|
||||||
vshPrint(ctl, "\n");
|
vshPrint(ctl, "\n");
|
||||||
|
|
||||||
vshPrint(ctl, _(" Miscellaneous:"));
|
vshPrint(ctl, "%s", _(" Miscellaneous:"));
|
||||||
#ifdef ENABLE_SECDRIVER_APPARMOR
|
#ifdef ENABLE_SECDRIVER_APPARMOR
|
||||||
vshPrint(ctl, " AppArmor");
|
vshPrint(ctl, " AppArmor");
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user