if (taskInfo->cancelable == esxVI_Boolean_True) {
if (esxVI_CancelTask(ctx, task) < 0) {
- VIR_ERROR0("Cancelable task is blocked by an "
- "unanswered question but cancelation "
- "failed");
+ VIR_ERROR0(_("Cancelable task is blocked by an "
+ "unanswered question but cancelation "
+ "failed"));
}
} else {
- VIR_ERROR0("Non-cancelable task is blocked by an "
- "unanswered question");
+ VIR_ERROR0(_("Non-cancelable task is blocked by an "
+ "unanswered question"));
}
/* FIXME: Enable error reporting here again */
* of the function must also be changed. */
*property_value = strdup(udev_value);
if (*property_value == NULL) {
- VIR_ERROR("Failed to allocate memory for property value for "
- "property key '%s' on device with sysname '%s'",
+ VIR_ERROR(_("Failed to allocate memory for property value for "
+ "property key '%s' on device with sysname '%s'"),
property_key, udev_device_get_sysname(udev_device));
virReportOOMError();
ret = PROPERTY_ERROR;
* of the function must also be changed. */
*attr_value = strdup(udev_value);
if (*attr_value == NULL) {
- VIR_ERROR("Failed to allocate memory for sysfs attribute value for "
- "sysfs attribute '%s' on device with sysname '%s'",
+ VIR_ERROR(_("Failed to allocate memory for sysfs attribute value for "
+ "sysfs attribute '%s' on device with sysname '%s'"),
attr_name, udev_device_get_sysname(udev_device));
virReportOOMError();
ret = PROPERTY_ERROR;
if (virBufferError(&buf)) {
virBufferFreeAndReset(&buf);
- VIR_ERROR("Buffer error when generating device name for device "
- "with sysname '%s'", udev_device_get_sysname(device));
+ VIR_ERROR(_("Buffer error when generating device name for device "
+ "with sysname '%s'"), udev_device_get_sysname(device));
ret = -1;
}
filename = basename(def->sysfs_path);
if (!STRPREFIX(filename, "host")) {
- VIR_ERROR("SCSI host found, but its udev name '%s' does "
- "not begin with 'host'", filename);
+ VIR_ERROR(_("SCSI host found, but its udev name '%s' does "
+ "not begin with 'host'"), filename);
goto out;
}
udev_fd = udev_monitor_get_fd(udev_monitor);
if (fd != udev_fd) {
- VIR_ERROR("File descriptor returned by udev %d does not "
- "match node device file descriptor %d", fd, udev_fd);
+ VIR_ERROR(_("File descriptor returned by udev %d does not "
+ "match node device file descriptor %d"), fd, udev_fd);
goto out;
}