提交 b68f421a 编写于 作者: C Cole Robinson

vbox: VIR_WARN if we don't support the API version

We presently don't give any indication if the VirtualBox version
isn't in our support whitelist.

(cherry picked from commit 18644491)
上级 7b25be9d
......@@ -7858,7 +7858,11 @@ virHypervisorDriverPtr vboxGetHypervisorDriver(uint32_t uVersion)
/* Install gVBoxAPI according to the vbox API version. */
int result = 0;
installUniformedAPI(gVBoxAPI, result);
if (result < 0) return NULL;
if (result < 0) {
VIR_WARN("Libvirt doesn't support VirtualBox API version %u",
uVersion);
return NULL;
}
updateDriver();
return &vboxCommonDriver;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册