]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
maint: typo fixes
authorEric Blake <eblake@redhat.com>
Thu, 1 Dec 2011 23:08:34 +0000 (16:08 -0700)
committerEric Blake <eblake@redhat.com>
Thu, 1 Dec 2011 23:08:34 +0000 (16:08 -0700)
Many of these were mentioned by Yuri Chornoivan in:
https://bugzilla.redhat.com/show_bug.cgi?id=669506

* src/esx/esx_vi.c (esxVI_WaitForTaskCompletion): Fix spelling.
* src/conf/netdev_vport_profile_conf.c
(virNetDevVPortProfileParse): Likewise.
* src/xen/xend_internal.c (xenDaemonDomainSetVcpusFlags):
Likewise.
* src/xen/xm_internal.c (xenXMDomainSetVcpusFlags): Likewise.
* src/esx/esx_util.c (esxUtil_ResolveHostname): Likewise.
* src/storage/storage_backend_fs.c
(virStorageBackendFileSystemBuild): Likewise.
* daemon/libvirtd.conf: Likewise.
* src/util/logging.c (virLogMessage): Likewise.
* src/uml/uml_conf.c (umlBuildCommandLineNet): Likewise.
* src/vmx/vmx.c (virVMXFormatEthernet): Likewise.

daemon/libvirtd.conf
src/conf/netdev_vport_profile_conf.c
src/esx/esx_util.c
src/esx/esx_vi.c
src/storage/storage_backend_fs.c
src/uml/uml_conf.c
src/util/logging.c
src/vmx/vmx.c
src/xen/xend_internal.c
src/xen/xm_internal.c

index f218454dc950a79babbb003ac17b02c9f997c3d7..3eab2be487ff811ed0c1c53e225169cc60f48cdc 100644 (file)
 # Logging controls
 #
 
-# Logging level: 4 errors, 3 warnings, 2 informations, 1 debug
+# Logging level: 4 errors, 3 warnings, 2 information, 1 debug
 # basically 1 will log everything possible
 #log_level = 3
 
 # the event layer.
 
 # Logging outputs:
-# An output is one of the places to save logging informations
+# An output is one of the places to save logging information
 # The format for an output can be:
 #    x:stderr
 #      output goes to stderr
index 861ad34b6648a366c81e94bfb80f95c0c557763e..b48b2cbc2355b9a7331c8f146acb3b498924ab6d 100644 (file)
@@ -167,7 +167,7 @@ virNetDevVPortProfileParse(xmlNodePtr node)
             }
         } else {
             virNetDevError(VIR_ERR_XML_ERROR, "%s",
-                                 _("profileid parameter is missing for 802.1Qbh descripion"));
+                                 _("profileid parameter is missing for 802.1Qbh description"));
             goto error;
         }
         break;
index 1925802f490ae551ad2d8270f21cdf3e10daa063..2c5ac1add03153d1a5d97893ee6b7deee38f61ea 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * esx_util.c: utility functions for the VMware ESX driver
  *
- * Copyright (C) 2010 Red Hat, Inc.
+ * Copyright (C) 2010-2011 Red Hat, Inc.
  * Copyright (C) 2009-2011 Matthias Bolte <matthias.bolte@googlemail.com>
  * Copyright (C) 2009 Maximilian Wilhelm <max@rfc2324.org>
  *
@@ -384,7 +384,7 @@ esxUtil_ResolveHostname(const char *hostname,
 
     if (errcode != 0) {
         ESX_ERROR(VIR_ERR_INTERNAL_ERROR,
-                  _("Formating IP address for host '%s' failed: %s"), hostname,
+                  _("Formatting IP address for host '%s' failed: %s"), hostname,
                   gai_strerror(errcode));
         freeaddrinfo(result);
         return -1;
index 21892a0119225bae1dd7963f6a863a10911952de..80f337b3be9df5424d84e9f3fcaf076883f9d2dd 100644 (file)
@@ -3955,7 +3955,7 @@ esxVI_WaitForTaskCompletion(esxVI_Context *ctx,
                 if (taskInfo->cancelable == esxVI_Boolean_True) {
                     if (esxVI_CancelTask(ctx, task) < 0 && blocked) {
                         VIR_ERROR(_("Cancelable task is blocked by an "
-                                     "unanswered question but cancelation "
+                                     "unanswered question but cancellation "
                                      "failed"));
                     }
                 } else if (blocked) {
index 3473435c67c8ef6cb3695c266d2b275441604980..b5acd20ad1020c092d957381f01b27f45a708e67 100644 (file)
@@ -706,7 +706,7 @@ error:
 /**
  * @conn connection to report errors against
  * @pool storage pool to build
- * @flags controls the pool formating behaviour
+ * @flags controls the pool formatting behaviour
  *
  * Build a directory or FS based storage pool.
  *
index a576047d75e4e75b0b25f513a90a8ed0e867e38d..b878622c2da51530deee751ac3dda75be4bd054b 100644 (file)
@@ -188,12 +188,12 @@ umlBuildCommandLineNet(virConnectPtr conn,
         }
         if (def->data.ethernet.ipaddr) {
             umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                           _("IP address not supported for ethernet inteface"));
+                           _("IP address not supported for ethernet interface"));
             goto error;
         }
         if (def->data.ethernet.script) {
             umlReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                           _("script execution not supported for ethernet inteface"));
+                           _("script execution not supported for ethernet interface"));
             goto error;
         }
         break;
index f55050365fc36ff06be71734307a413e190c084a..8d60280775c4975a651c1364b5ce2dfd55dc46b9 100644 (file)
@@ -677,7 +677,7 @@ virLogVersionString(char **msg)
  * @fmt: the string format
  * @...: the arguments
  *
- * Call the libvirt logger with some informations. Based on the configuration
+ * Call the libvirt logger with some information. Based on the configuration
  * the message may be stored, sent to output or just discarded
  */
 void virLogMessage(const char *category, int priority, const char *funcname,
index 9ba06e58212bea4fe8a5f70ae1eb9e0a9a8b9a62..c250aeeb9837fd6a53f1abd72e25bc659fece453 100644 (file)
@@ -3513,7 +3513,7 @@ virVMXFormatEthernet(virDomainNetDefPtr def, int controller,
             STRCASENEQ(def->model, "vmxnet3") &&
             STRCASENEQ(def->model, "e1000")) {
             VMX_ERROR(VIR_ERR_INTERNAL_ERROR,
-                      _("Expecting domain XML entry 'devices/interfase/model' "
+                      _("Expecting domain XML entry 'devices/interface/model' "
                         "to be 'vlance' or 'vmxnet' or 'vmxnet2' or 'vmxnet3' "
                         "or 'e1000' but found '%s'"), def->model);
             return -1;
index 2318565396b69213bcac8f55199d78a302e6cba4..16165fe1334d298924250e81c5a2b909de41a2c4 100644 (file)
@@ -2217,7 +2217,7 @@ xenDaemonDomainSetVcpusFlags(virDomainPtr domain, unsigned int vcpus,
     flags |= VIR_DOMAIN_VCPU_MAXIMUM;
     if ((max = xenDaemonDomainGetVcpusFlags(domain, flags)) < 0) {
         virXendError(VIR_ERR_OPERATION_INVALID, "%s",
-                     _("could not determin max vcpus for the domain"));
+                     _("could not determine max vcpus for the domain"));
         return -1;
     }
     if (vcpus > max) {
index a250b6ff9efe43ae00fbff87c7c72bafa0a9fdb4..9c376fb9dbeb2838fcfd00c8fa091271495c9f41 100644 (file)
@@ -728,7 +728,7 @@ xenXMDomainSetVcpusFlags(virDomainPtr domain, unsigned int vcpus,
     /* Hypervisor maximum. */
     if ((max = xenUnifiedGetMaxVcpus(domain->conn, NULL)) < 0) {
         xenXMError(VIR_ERR_INTERNAL_ERROR, "%s",
-                   _("could not determin max vcpus for the domain"));
+                   _("could not determine max vcpus for the domain"));
         goto cleanup;
     }
     /* Can't specify a current larger than stored maximum; but