mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
Revert "Fix unbalanced quotation marks"
This reverts commit 6a40801186
.
release of 2.1.0 need to go first
This commit is contained in:
parent
6a40801186
commit
f9243229fd
@ -8265,14 +8265,14 @@ virDomainControllerDefParseXML(xmlNodePtr node,
|
|||||||
|
|
||||||
if (max_sectors && virStrToLong_ui(max_sectors, NULL, 10, &def->max_sectors) < 0) {
|
if (max_sectors && virStrToLong_ui(max_sectors, NULL, 10, &def->max_sectors) < 0) {
|
||||||
virReportError(VIR_ERR_XML_ERROR,
|
virReportError(VIR_ERR_XML_ERROR,
|
||||||
_("Malformed 'max_sectors' value %s"), max_sectors);
|
_("Malformed 'max_sectors' value %s'"), max_sectors);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ioeventfd &&
|
if (ioeventfd &&
|
||||||
(def->ioeventfd = virTristateSwitchTypeFromString(ioeventfd)) < 0) {
|
(def->ioeventfd = virTristateSwitchTypeFromString(ioeventfd)) < 0) {
|
||||||
virReportError(VIR_ERR_XML_ERROR,
|
virReportError(VIR_ERR_XML_ERROR,
|
||||||
_("Malformed 'ioeventfd' value %s"), ioeventfd);
|
_("Malformed 'ioeventfd' value %s'"), ioeventfd);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1973,7 +1973,7 @@ vshEventGenericPrint(virConnectPtr conn ATTRIBUTE_UNUSED,
|
|||||||
if (virTimeStringNowRaw(timestamp) < 0)
|
if (virTimeStringNowRaw(timestamp) < 0)
|
||||||
timestamp[0] = '\0';
|
timestamp[0] = '\0';
|
||||||
|
|
||||||
vshPrint(data->ctl, _("%s: event '%s' for storage pool %s\n"),
|
vshPrint(data->ctl, _("%s: event '%s'' for storage pool %s\n"),
|
||||||
timestamp,
|
timestamp,
|
||||||
data->cb->name,
|
data->cb->name,
|
||||||
virStoragePoolGetName(pool));
|
virStoragePoolGetName(pool));
|
||||||
|
Loading…
Reference in New Issue
Block a user