[PATCH 4/6] network_conf: add validation against schema in create

Kristina Hanicova khanicov at redhat.com
Thu Aug 26 11:21:42 UTC 2021


Signed-off-by: Kristina Hanicova <khanicov at redhat.com>
---
 src/conf/network_conf.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/conf/network_conf.c b/src/conf/network_conf.c
index f23599abac..5e24880f1f 100644
--- a/src/conf/network_conf.c
+++ b/src/conf/network_conf.c
@@ -2093,7 +2093,8 @@ virNetworkDefParse(const char *xmlStr,
     int keepBlanksDefault = xmlKeepBlanksDefault(0);
 
     if ((xml = virXMLParse(filename, xmlStr, _("(network_definition)"),
-                           "network.rng", flags & VIR_NETWORK_DEFINE_VALIDATE)))
+                           "network.rng", flags & (VIR_NETWORK_DEFINE_VALIDATE |
+                                                   VIR_NETWORK_CREATE_VALIDATE))))
         def = virNetworkDefParseNode(xml, xmlDocGetRootElement(xml), xmlopt);
 
     xmlKeepBlanksDefault(keepBlanksDefault);
-- 
2.31.1




More information about the libvir-list mailing list