From 155542a57fa8498d762b00c3a7adc285c40a3ce9 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Tue, 24 May 2011 13:43:30 +0200 Subject: [PATCH] conf: Fix incorrect spice graphic XML format on compression options If spice graphics has no elements, the output graphics XML is messed up. To prevent this, we need to end the element just before adding any compression selecting elements. --- src/conf/domain_conf.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/conf/domain_conf.c b/src/conf/domain_conf.c index 77ab1e5343..b40620208e 100644 --- a/src/conf/domain_conf.c +++ b/src/conf/domain_conf.c @@ -8998,6 +8998,12 @@ virDomainGraphicsDefFormat(virBufferPtr buf, virDomainGraphicsSpiceChannelNameTypeToString(i), virDomainGraphicsSpiceChannelModeTypeToString(mode)); } + if (!children && (def->data.spice.image || def->data.spice.jpeg || + def->data.spice.zlib || def->data.spice.playback || + def->data.spice.streaming)) { + virBufferAddLit(buf, ">\n"); + children = 1; + } if (def->data.spice.image) virBufferAsprintf(buf, " \n", virDomainGraphicsSpiceImageCompressionTypeToString(def->data.spice.image));