Fixed a type-o in the VMWare builder when locating the dhcp configuration file on Linux.

Closes issue #5882.
pull/5898/head
Ali Rizvi-Santiago 8 years ago
parent 834e04e234
commit d6e5342ece

@ -59,7 +59,7 @@ func workstationDhcpConfPath(device string) string {
log.Printf("Error finding VMware root: %s", err)
return ""
}
return filepath.Join(base, device, "dhcp/dhcpd.conf")
return filepath.Join(base, device, "dhcp/dhcp.conf")
}
func workstationVmnetnatConfPath(device string) string {

Loading…
Cancel
Save