summaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-chrome_updater_updater.cc
diff options
context:
space:
mode:
authorRobert Nagy <robert@openbsd.org>2023-01-11 14:11:07 +0100
committerRene Ladan <rene@FreeBSD.org>2023-01-13 12:04:19 +0100
commit36d5a0919f1b243708d710b3badbafe37664fc9e (patch)
tree1e0888283c5eeafc7eb7ca59147e183be94b89ef /www/chromium/files/patch-chrome_updater_updater.cc
parentsysutils/restic: Update to 0.15.0 (diff)
www/chromium: update to 109.0.5414.74
Security: https://vuxml.freebsd.org/freebsd/7b929503-911d-11ed-a925-3065ec8fd3ec.html
Diffstat (limited to 'www/chromium/files/patch-chrome_updater_updater.cc')
-rw-r--r--www/chromium/files/patch-chrome_updater_updater.cc11
1 files changed, 10 insertions, 1 deletions
diff --git a/www/chromium/files/patch-chrome_updater_updater.cc b/www/chromium/files/patch-chrome_updater_updater.cc
index 5cf501dd352a..b4293f0a3956 100644
--- a/www/chromium/files/patch-chrome_updater_updater.cc
+++ b/www/chromium/files/patch-chrome_updater_updater.cc
@@ -1,4 +1,4 @@
---- chrome/updater/updater.cc.orig 2022-08-31 12:19:35 UTC
+--- chrome/updater/updater.cc.orig 2023-01-11 09:17:16 UTC
+++ chrome/updater/updater.cc
@@ -44,7 +44,7 @@
#include "chrome/updater/win/win_util.h"
@@ -7,5 +7,14 @@
-#elif BUILDFLAG(IS_LINUX)
+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
#include "chrome/updater/app/server/linux/server.h"
+ #include "chrome/updater/linux/ipc_support.h"
#endif
+@@ -137,7 +137,7 @@ int HandleUpdaterCommands(UpdaterScope updater_scope,
+ CHECK(false) << "--crash-me was used.";
+ }
+-#if BUILDFLAG(IS_LINUX)
++#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
+ // As long as this object is alive, all Mojo API surface relevant to IPC
+ // connections is usable, and message pipes which span a process boundary will
+ // continue to function.