# 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
}
} 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;
/*
* 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>
*
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;
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) {
/**
* @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.
*
}
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;
* @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,
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;
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) {
/* 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