From f9243229fdff185153257c9dafc80ccf9025c5d9 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Tue, 2 Aug 2016 12:34:18 +0200 Subject: [PATCH] Revert "Fix unbalanced quotation marks" This reverts commit 6a40801186d1fcba38360f58659f898b67f08a01. release of 2.1.0 need to go first --- src/conf/domain_conf.c | 4 ++-- tools/virsh-pool.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 7f876de878..a56e0f5d16 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -8265,14 +8265,14 @@ virDomainControllerDefParseXML(xmlNodePtr node, if (max_sectors && virStrToLong_ui(max_sectors, NULL, 10, &def->max_sectors) < 0) { virReportError(VIR_ERR_XML_ERROR, - _("Malformed 'max_sectors' value %s"), max_sectors); + _("Malformed 'max_sectors' value %s'"), max_sectors); goto error; } if (ioeventfd && (def->ioeventfd = virTristateSwitchTypeFromString(ioeventfd)) < 0) { virReportError(VIR_ERR_XML_ERROR, - _("Malformed 'ioeventfd' value %s"), ioeventfd); + _("Malformed 'ioeventfd' value %s'"), ioeventfd); goto error; } diff --git a/tools/virsh-pool.c b/tools/virsh-pool.c index 448927249e..60453310df 100644 --- a/tools/virsh-pool.c +++ b/tools/virsh-pool.c @@ -1973,7 +1973,7 @@ vshEventGenericPrint(virConnectPtr conn ATTRIBUTE_UNUSED, if (virTimeStringNowRaw(timestamp) < 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, data->cb->name, virStoragePoolGetName(pool));