From: Vasiliy Tolstov Date: Mon, 4 Apr 2016 21:00:04 +0000 (+0000) Subject: lxc domain allow to set peer address X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=afee47d07c521b4bb10a12e253a29363d16ab8f0;p=libvirt.git lxc domain allow to set peer address Signed-off-by: Vasiliy Tolstov --- diff --git a/src/lxc/lxc_container.c b/src/lxc/lxc_container.c index a909b660b3..a1deb0c00d 100644 --- a/src/lxc/lxc_container.c +++ b/src/lxc/lxc_container.c @@ -520,7 +520,7 @@ static int lxcContainerRenameAndEnableInterfaces(virDomainDefPtr vmDef, VIR_DEBUG("Adding IP address '%s/%u' to '%s'", ipStr, ip->prefix, newname); - if (virNetDevSetIPAddress(newname, &ip->address, NULL, prefix) < 0) { + if (virNetDevSetIPAddress(newname, &ip->address, &ip->peer, prefix) < 0) { virReportError(VIR_ERR_SYSTEM_ERROR, _("Failed to set IP address '%s' on %s"), ipStr, newname);