Fix Multiple Typos

Signed-off-by: Nitesh Konkar <nitkon12@linux.vnet.ibm.com>
This commit is contained in:
Nitesh Konkar 2016-09-22 16:03:24 +05:30 committed by John Ferlan
parent c944a63461
commit d523fd81ba
5 changed files with 7 additions and 7 deletions

View 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

View 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 */

View 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;

View 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);

View 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);