diff options
author | 2011-12-01 16:08:34 -0700 | |
---|---|---|
committer | 2011-12-01 16:08:34 -0700 | |
commit | a6997934497bac4664a699e98582afe5e114d83b (patch) | |
tree | ee8f603dd9dc66f1a3be92c0b50fe9273afdc06d /src/xen | |
parent | build: update to latest gnulib (diff) | |
download | libvirt-a6997934497bac4664a699e98582afe5e114d83b.tar.gz libvirt-a6997934497bac4664a699e98582afe5e114d83b.tar.bz2 libvirt-a6997934497bac4664a699e98582afe5e114d83b.zip |
maint: typo fixes
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.
Diffstat (limited to 'src/xen')
-rw-r--r-- | src/xen/xend_internal.c | 2 | ||||
-rw-r--r-- | src/xen/xm_internal.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/xen/xend_internal.c b/src/xen/xend_internal.c index 231856539..16165fe13 100644 --- a/src/xen/xend_internal.c +++ b/src/xen/xend_internal.c @@ -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) { diff --git a/src/xen/xm_internal.c b/src/xen/xm_internal.c index a250b6ff9..9c376fb9d 100644 --- a/src/xen/xm_internal.c +++ b/src/xen/xm_internal.c @@ -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 |