]> xenbits.xensource.com Git - libvirt.git/commitdiff
* src/bridge.c src/virsh.c: typo fixes from Atsushi SAKAI
authorDaniel Veillard <veillard@redhat.com>
Thu, 13 Mar 2008 09:21:41 +0000 (09:21 +0000)
committerDaniel Veillard <veillard@redhat.com>
Thu, 13 Mar 2008 09:21:41 +0000 (09:21 +0000)
daniel

ChangeLog
src/bridge.c
src/virsh.c

index cf8f62dc7f5f2ee54f2b76b632a9333f58eac2d0..eebf2e68d20602e44d720dfb99e510ccbb48a863 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Mar 13 10:19:16 CET 2008 Daniel Veillard <veillard@redhat.com>
+
+       * src/bridge.c src/virsh.c: typo fixes from Atsushi SAKAI
+
 Thu Mar 13 10:15:58 CET 2008 Daniel Veillard <veillard@redhat.com>
 
        * src/qemu_conf.c src/qemu_driver.c: patch from Cole Robinson
index 6626156ed093c3d7726a19d7068f3370f2db4081..054dfd369829a1fdea9b40f6c57dedc613a37111 100644 (file)
@@ -545,7 +545,7 @@ brGetInetAddr(brControl *ctl,
  * brSetInetAddress:
  * @ctl: bridge control pointer
  * @ifname: the interface name
- * @addr: the string representation of the IP adress
+ * @addr: the string representation of the IP address
  *
  * Function to bind the interface to an IP address, it should handle
  * IPV4 and IPv6. The string for addr would be of the form
@@ -566,7 +566,7 @@ brSetInetAddress(brControl *ctl,
  * brGetInetAddress:
  * @ctl: bridge control pointer
  * @ifname: the interface name
- * @addr: the array for the string representation of the IP adress
+ * @addr: the array for the string representation of the IP address
  * @maxlen: size of @addr in bytes
  *
  * Function to get the IP address of an interface, it should handle
index cf0f12c50e9db5121545ee9cd99352707a811ba0..f74714b602db3658f38641f3fd64f1d777e10b84 100644 (file)
@@ -668,7 +668,7 @@ cmdList(vshControl * ctl, vshCmd * cmd ATTRIBUTE_UNUSED)
 static vshCmdInfo info_domstate[] = {
     {"syntax", "domstate <domain>"},
     {"help", gettext_noop("domain state")},
-    {"desc", gettext_noop("Returns state about a running domain.")},
+    {"desc", gettext_noop("Returns state about a domain.")},
     {NULL, NULL}
 };
 
@@ -1818,7 +1818,7 @@ cmdVcpupin(vshControl * ctl, vshCmd * cmd)
 static vshCmdInfo info_setvcpus[] = {
     {"syntax", "setvcpus <domain> <count>"},
     {"help", gettext_noop("change number of virtual CPUs")},
-    {"desc", gettext_noop("Change the number of virtual CPUs active in the guest domain.")},
+    {"desc", gettext_noop("Change the number of virtual CPUs in the guest domain.")},
     {NULL, NULL}
 };
 
@@ -4567,7 +4567,7 @@ static vshCmdOptDef opts_attach_interface[] = {
     {"type",   VSH_OT_DATA, VSH_OFLAG_REQ, gettext_noop("network interface type")},
     {"source", VSH_OT_DATA, VSH_OFLAG_REQ, gettext_noop("source of network interface")},
     {"target", VSH_OT_DATA, 0, gettext_noop("target network name")},
-    {"mac",    VSH_OT_DATA, 0, gettext_noop("MAC adress")},
+    {"mac",    VSH_OT_DATA, 0, gettext_noop("MAC address")},
     {"script", VSH_OT_DATA, 0, gettext_noop("script used to bridge network interface")},
     {NULL, 0, 0, NULL}
 };
@@ -4679,7 +4679,7 @@ static vshCmdInfo info_detach_interface[] = {
 static vshCmdOptDef opts_detach_interface[] = {
     {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, gettext_noop("domain name, id or uuid")},
     {"type",   VSH_OT_DATA, VSH_OFLAG_REQ, gettext_noop("network interface type")},
-    {"mac",    VSH_OT_DATA, 0, gettext_noop("MAC adress")},
+    {"mac",    VSH_OT_DATA, 0, gettext_noop("MAC address")},
     {NULL, 0, 0, NULL}
 };