]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix Multiple Typos
authorNitesh Konkar <niteshkonkar.libvirt@gmail.com>
Thu, 22 Sep 2016 10:33:24 +0000 (16:03 +0530)
committerJohn Ferlan <jferlan@redhat.com>
Thu, 22 Sep 2016 17:55:09 +0000 (13:55 -0400)
Signed-off-by: Nitesh Konkar <nitkon12@linux.vnet.ibm.com>
src/conf/domain_conf.c
src/conf/domain_conf.h
src/conf/storage_conf.c
src/esx/esx_driver.c
src/interface/interface_backend_udev.c

index 5fede3d403c1780ce1cea50131d08573806e3f5d..dd34cec489beb1c0e29ecf48707f6f33d7944408 100644 (file)
@@ -14165,7 +14165,7 @@ void virDomainControllerInsertPreAlloced(virDomainDefPtr def,
                                          virDomainControllerDefPtr controller)
 {
     int idx;
-    /* Tenatively plan to insert controller at the end. */
+    /* Tentatively plan to insert controller at the end. */
     int insertAt = -1;
     virDomainControllerDefPtr current = NULL;
 
@@ -19847,7 +19847,7 @@ virDomainDiskBlockIoDefFormat(virBufferPtr buf,
 
 /* virDomainSourceDefFormatSeclabel:
  *
- * This function automaticaly closes the <source> element and formats any
+ * This function automatically closes the <source> element and formats any
  * possible seclabels.
  */
 static void
index d4a84c371838a39d3525301a4fb85ccbd4beb4da..ce90c2764b4ced62dc3a8e5798fe0ca22f68512e 100644 (file)
@@ -300,7 +300,7 @@ typedef enum {
 
 /* the backend driver used for PCI hostdev devices */
 typedef enum {
-    VIR_DOMAIN_HOSTDEV_PCI_BACKEND_DEFAULT, /* detect automaticaly, prefer VFIO */
+    VIR_DOMAIN_HOSTDEV_PCI_BACKEND_DEFAULT, /* detect automatically, prefer VFIO */
     VIR_DOMAIN_HOSTDEV_PCI_BACKEND_KVM,    /* force legacy kvm style */
     VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO,   /* force vfio */
     VIR_DOMAIN_HOSTDEV_PCI_BACKEND_XEN,    /* force legacy xen style, use pciback */
index 05a1a49cee4fd0ac57cdf5e015f20a7edbd1d322..7e7bb7239e552e9f9f804567875487d0d39aa641 100644 (file)
@@ -2476,7 +2476,7 @@ virStoragePoolSourceFindDuplicate(virConnectPtr conn,
         if (def->type != pool->def->type)
             continue;
 
-        /* Don't mach against ourself if re-defining existing pool ! */
+        /* Don't match against ourself if re-defining existing pool ! */
         if (STREQ(pool->def->name, def->name))
             continue;
 
index 3d90b695de6b3d8868b3cee6a9092c456ff3eecd..5ce98b31b730054b9938e97664522b24d533cb06 100644 (file)
@@ -78,7 +78,7 @@ esxFreePrivate(esxPrivate **priv)
 
 /*
  * Parse a file name from a .vmx file and convert it to datastore path format
- * if possbile. A .vmx file can contain file names in various formats:
+ * if possible. A .vmx file can contain file names in various formats:
  *
  * - A single name referencing a file in the same directory as the .vmx file:
  *
@@ -969,7 +969,7 @@ esxConnectOpen(virConnectPtr conn, virConnectAuthPtr auth,
                     STRNEQ(vCenterIPAddress, potentialVCenterIPAddress)) {
                     virReportError(VIR_ERR_INTERNAL_ERROR,
                                    _("This host is managed by a vCenter with IP "
-                                     "address %s, but a mismachting vCenter '%s' "
+                                     "address %s, but a mismatching vCenter '%s' "
                                      "(%s) has been specified"),
                                    potentialVCenterIPAddress, priv->parsedUri->vCenter,
                                    vCenterIPAddress);
index 27a772dc03960ad5095faef2e60c18d0860c6613..5d0fc64e535cd2e755e6c24886c9c617017987a6 100644 (file)
@@ -884,7 +884,7 @@ udevGetIfaceDefBridge(struct udev *udev,
         goto error;
     ifacedef->data.bridge.nbItf = member_count;
 
-    /* Get the interface defintions for each member of the bridge */
+    /* Get the interface definitions for each member of the bridge */
     for (i = 0; i < member_count; i++) {
         ifacedef->data.bridge.itf[i] =
             udevGetIfaceDef(udev, member_list[i]->d_name);