From: Martin Kletzander Date: Fri, 22 Jun 2012 13:16:44 +0000 (+0200) Subject: docs/virsh: various minor fixes X-Git-Tag: v0.10.0-rc1~168 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d448b115658b53fe472b2e6982c33fbd00947ab;p=thirdparty%2Flibvirt.git docs/virsh: various minor fixes List: - some old libvir/libvirt rename leftovers (the only problem can be if somebody parses 'virsh version' output really badly) - remove pointless tags specified in some pages that are not used --- diff --git a/docs/api_extension.html.in b/docs/api_extension.html.in index 8d74752aa9..83c488c636 100644 --- a/docs/api_extension.html.in +++ b/docs/api_extension.html.in @@ -1,8 +1,4 @@ - - Implementing a new API in Libvirt - -

Implementing a new API in Libvirt

diff --git a/docs/pending.html.in b/docs/pending.html.in index 7a31878c9d..f2978bfda5 100644 --- a/docs/pending.html.in +++ b/docs/pending.html.in @@ -1,8 +1,4 @@ - - - Pending patches needing review -

Pending patches needing review

A list of pending patches needing review upstream is available diff --git a/tools/virsh-host.c b/tools/virsh-host.c index d9d09b45f3..b09d9f9d86 100644 --- a/tools/virsh-host.c +++ b/tools/virsh-host.c @@ -762,7 +762,7 @@ cmdVersion(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED) includeVersion %= 1000000; minor = includeVersion / 1000; rel = includeVersion % 1000; - vshPrint(ctl, _("Compiled against library: libvir %d.%d.%d\n"), + vshPrint(ctl, _("Compiled against library: libvirt %d.%d.%d\n"), major, minor, rel); ret = virGetVersion(&libVersion, hvType, &apiVersion); @@ -774,7 +774,7 @@ cmdVersion(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED) libVersion %= 1000000; minor = libVersion / 1000; rel = libVersion % 1000; - vshPrint(ctl, _("Using library: libvir %d.%d.%d\n"), + vshPrint(ctl, _("Using library: libvirt %d.%d.%d\n"), major, minor, rel); major = apiVersion / 1000000;