blob: 1088d08495bf1de949e86a84094d99862b6a73e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- remoting/host/host_details.cc.orig 2017-05-09 19:02:49 UTC
+++ remoting/host/host_details.cc
@@ -26,6 +26,8 @@ std::string GetHostOperatingSystemName()
return "Linux";
#elif defined(OS_ANDROID)
return "Android";
+#elif defined(OS_BSD)
+ return "BSD";
#else
#error "Unsupported host OS"
#endif
|