diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 6bf2b30874241f0c14202b453c2584f2268e1f1b..365de7744cff16e3183afdfc1e234ad61bed49c8 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -11408,8 +11408,7 @@ virDomainDefParseXML(xmlDocPtr xml, int val = virDomainFeatureTypeFromString((const char *)nodes[i]->name); if (val < 0) { virReportError(VIR_ERR_INTERNAL_ERROR, - _("unexpected feature %s"), - nodes[i]->name); + _("unexpected feature '%s'"), nodes[i]->name); goto error; } def->features |= (1 << val); @@ -11419,7 +11418,7 @@ virDomainDefParseXML(xmlDocPtr xml, int eoi; if ((eoi = virDomainFeatureStateTypeFromString(tmp)) <= 0) { virReportError(VIR_ERR_CONFIG_UNSUPPORTED, - _("unknown value for attribute eoi: %s"), + _("unknown value for attribute eoi: '%s'"), tmp); goto error; }