Forgotten to remove the previous if statement in commit r355838.
MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D19400
This commit is contained in:
parent
a71dc724e4
commit
af1e30f8be
@ -106,10 +106,8 @@ int
|
||||
vm_create(const char *name)
|
||||
{
|
||||
/* Try to load vmm(4) module before creating a guest. */
|
||||
if (modfind("vmm") < 0) {
|
||||
if (modfind("vmm") < 0)
|
||||
kldload("vmm");
|
||||
}
|
||||
if (modfind("vmm") < 0)
|
||||
kldload("vmm");
|
||||
return (CREATE((char *)name));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user