$OpenBSD: patch-remoting_webapp_base_js_platform_js,v 1.2 2018/05/04 07:14:58 robert Exp $

Index: remoting/webapp/base/js/platform.js
--- remoting/webapp/base/js/platform.js.orig
+++ remoting/webapp/base/js/platform.js
@@ -107,6 +107,14 @@ remoting.getSystemInfo = function() {
     return result;
   }
 
+  match = new RegExp('OpenBSD ([a-zA-Z0-9_]*)').exec(userAgent);
+  if (match && (match.length >= 2)) {
+    result.osName = remoting.Os.LINUX;
+    result.osVersion = '';
+    result.cpu = match[1];
+    return result;
+  }
+
   match = new RegExp('([a-zA-Z]*) Mac OS X ([0-9_]*)').exec(userAgent);
   if (match && (match.length >= 3)) {
     result.osName = remoting.Os.MAC;
