On a Thursday in 2021, Kristina Hanicova wrote:
Signed-off-by: Kristina Hanicova <khanicov(a)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);
This has no functional effect, since 1 | 1 == 1.
I think leaving only one symbolic representation of 1 here is less
confusing.
Jano
xmlKeepBlanksDefault(keepBlanksDefault);
--
2.31.1