]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Remove double space in error messages
authorJán Tomko <jtomko@redhat.com>
Fri, 26 Jul 2013 10:15:41 +0000 (12:15 +0200)
committerJán Tomko <jtomko@redhat.com>
Fri, 26 Jul 2013 10:53:45 +0000 (12:53 +0200)
src/conf/network_conf.c

index a2d4ff8b431213498c87e59e6d24bc16e3b00d74..fcfc23d98341685f3a634c271059630b8dbf0816 100644 (file)
@@ -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;
     }