blob: 0677408e91b5b35db068c0f7b75c0893e6d78da2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$OpenBSD: patch-remoting_host_host_details_cc,v 1.8 2021/09/01 16:54:40 robert Exp $
Index: remoting/host/host_details.cc
--- remoting/host/host_details.cc.orig
+++ remoting/host/host_details.cc
@@ -23,7 +23,7 @@ std::string GetHostOperatingSystemName() {
return "Mac";
#elif BUILDFLAG(IS_CHROMEOS_ASH)
return "ChromeOS";
-#elif defined(OS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS)
+#elif defined(OS_LINUX) || BUILDFLAG(IS_CHROMEOS_LACROS) || defined(OS_BSD)
return "Linux";
#elif defined(OS_ANDROID)
return "Android";
|