From: Laine Stump Date: Wed, 7 Mar 2012 13:58:49 +0000 (-0500) Subject: conf: fix error log with "address address" X-Git-Tag: v0.9.11-rc1~128 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d16a166eaf4452e8b01a4c50889617e1f37334eb;p=thirdparty%2Flibvirt.git conf: fix error log with "address address" Addresses https://bugzilla.redhat.com/show_bug.cgi?id=800762 --- diff --git a/src/conf/network_conf.c b/src/conf/network_conf.c index 44dd70b9ed..743ae92937 100644 --- a/src/conf/network_conf.c +++ b/src/conf/network_conf.c @@ -778,7 +778,7 @@ virNetworkIPParseXML(const char *networkName, if (!(VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_INET) || VIR_SOCKET_ADDR_IS_FAMILY(&def->address, AF_UNSPEC))) { virNetworkReportError(VIR_ERR_CONFIG_UNSUPPORTED, - _("no family specified for non-IPv4 address address '%s' in network '%s'"), + _("no family specified for non-IPv4 address '%s' in network '%s'"), address, networkName); goto error; }