提交 33d02dfc 编写于 作者: L Laine Stump

conf: use virXMLFormatElement for interface <target>

This will simplify addition of another attribute to the <target> element
Signed-off-by: NLaine Stump <laine@redhat.com>
Reviewed-by: NDaniel P. Berrangé <berrange@redhat.com>
上级 3c049fad
......@@ -25339,6 +25339,7 @@ virDomainNetDefFormat(virBufferPtr buf,
const char *typeStr;
virDomainHostdevDefPtr hostdef = NULL;
char macstr[VIR_MAC_STRING_BUFLEN];
VIR_AUTOCLEAN(virBuffer) attrBuf = VIR_BUFFER_INITIALIZER;
/* publicActual is true if we should report the current state in
* def->data.network.actual *instead of* the config (*not* in
......@@ -25553,9 +25554,12 @@ virDomainNetDefFormat(virBufferPtr buf,
(STRPREFIX(def->ifname, VIR_NET_GENERATED_TAP_PREFIX) ||
(prefix && STRPREFIX(def->ifname, prefix))))) {
/* Skip auto-generated target names for inactive config. */
virBufferEscapeString(buf, "<target dev='%s'/>\n", def->ifname);
virBufferEscapeString(&attrBuf, " dev='%s'", def->ifname);
}
if (virXMLFormatElement(buf, "target", &attrBuf, NULL) < 0)
return -1;
if (def->ifname_guest || def->ifname_guest_actual) {
virBufferAddLit(buf, "<guest");
/* Skip auto-generated target names for inactive config. */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册