]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
bhyve: s/provconn/privcon/
authorMichal Privoznik <mprivozn@redhat.com>
Thu, 13 Nov 2025 08:06:43 +0000 (09:06 +0100)
committerMichal Privoznik <mprivozn@redhat.com>
Thu, 13 Nov 2025 08:08:02 +0000 (09:08 +0100)
Due to a typo, the bhyve driver doesn't compile. Fix it.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
src/bhyve/bhyve_driver.c

index 3a4e83d3d28874d85a07825f5b67a778725e1b47..4b1ca80fc67d0692ff47ae2600f6e0eafbac6474 100644 (file)
@@ -487,7 +487,7 @@ bhyveDomainDefineXMLFlags(virConnectPtr conn, const char *xml, unsigned int flag
         return NULL;
 
     /* Avoid parsing the whole domain definition for ACL checks */
-    if (!(def = virDomainDefIDsParseString(xml, provconn->xmlopt, parse_flags)))
+    if (!(def = virDomainDefIDsParseString(xml, privconn->xmlopt, parse_flags)))
         return NULL;
 
     if (virDomainDefineXMLFlagsEnsureACL(conn, def) < 0)
@@ -896,7 +896,7 @@ bhyveDomainCreateXML(virConnectPtr conn,
         start_flags |= VIR_BHYVE_PROCESS_START_AUTODESTROY;
 
     /* Avoid parsing the whole domain definition for ACL checks */
-    if (!(def = virDomainDefIDsParseString(xml, provconn->xmlopt, parse_flags)))
+    if (!(def = virDomainDefIDsParseString(xml, privconn->xmlopt, parse_flags)))
         return NULL;
 
     if (virDomainCreateXMLEnsureACL(conn, def) < 0)