From: Ján Tomko Date: Fri, 26 Jul 2013 10:15:41 +0000 (+0200) Subject: Remove double space in error messages X-Git-Tag: v1.1.1-rc2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1238684a8790af07667dee8dd28f92bec1a5d578;p=thirdparty%2Flibvirt.git Remove double space in error messages --- diff --git a/src/conf/network_conf.c b/src/conf/network_conf.c index a2d4ff8b43..fcfc23d983 100644 --- a/src/conf/network_conf.c +++ b/src/conf/network_conf.c @@ -917,7 +917,7 @@ virNetworkDNSSrvDefParseXML(const char *networkName, if (!(def->service = virXMLPropString(node, "service")) && !partialOkay) { virReportError(VIR_ERR_XML_DETAIL, _("Missing required service attribute in DNS SRV record " - " of network %s"), networkName); + "of network %s"), networkName); goto error; } if (def->service && strlen(def->service) > DNS_RECORD_LENGTH_SRV) { @@ -940,7 +940,7 @@ virNetworkDNSSrvDefParseXML(const char *networkName, (STRNEQ(def->protocol, "udp"))) { virReportError(VIR_ERR_XML_DETAIL, _("Invalid protocol attribute value '%s' " - " in DNS SRV record of network %s"), + "in DNS SRV record of network %s"), def->protocol, networkName); goto error; }