summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2015-04-06 03:23:33 +0600
committerDaniil Baturin <daniil@baturin.org>2015-04-06 03:23:33 +0600
commit657c7cfeed950cb1282866c85f63b696f99411d0 (patch)
tree5b05a29e169fea853bd6aeb6595222fdd252246b
parent50df08977effb03313051ab77a9f0a93490f487a (diff)
downloadhvinfo-657c7cfeed950cb1282866c85f63b696f99411d0.tar.gz
hvinfo-657c7cfeed950cb1282866c85f63b696f99411d0.zip
Oops, bhyve CPUID signature has a trailing space.
-rw-r--r--src/hypervisor_check.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hypervisor_check.adb b/src/hypervisor_check.adb
index 826a0a2..30bccf3 100644
--- a/src/hypervisor_check.adb
+++ b/src/hypervisor_check.adb
@@ -124,7 +124,7 @@ package body Hypervisor_Check is
Vendor_Name := To_Unbounded_String ("VMWare");
elsif Vendor_String = "Microsoft Hv" then
Vendor_Name := To_Unbounded_String ("Microsoft Hyper-V");
- elsif Vendor_String = "bhyve bhyve" then
+ elsif Vendor_String = "bhyve bhyve " then
Vendor_Name := To_Unbounded_String (bhyve);
else
Vendor_Name := To_Unbounded_String ("Unknown hypervisor");