$OpenBSD: patch-components_os_crypt_libsecret_util_linux_cc,v 1.3 2019/04/17 11:48:54 robert Exp $

Index: components/os_crypt/libsecret_util_linux.cc
--- components/os_crypt/libsecret_util_linux.cc.orig
+++ components/os_crypt/libsecret_util_linux.cc
@@ -92,13 +92,13 @@ bool LibsecretLoader::LoadLibsecret() {
   if (libsecret_loaded_)
     return true;
 
-  static void* handle = dlopen("libsecret-1.so.0", RTLD_NOW | RTLD_GLOBAL);
+  static void* handle = dlopen("libsecret-1.so", RTLD_NOW | RTLD_GLOBAL);
   if (!handle) {
     // We wanted to use libsecret, but we couldn't load it. Warn, because
     // either the user asked for this, or we autodetected it incorrectly. (Or
     // the system has broken libraries, which is also good to warn about.)
     // TODO(crbug.com/607435): Channel this message to the user-facing log
-    VLOG(1) << "Could not load libsecret-1.so.0: " << dlerror();
+    VLOG(1) << "Could not load libsecret-1.so: " << dlerror();
     return false;
   }
 
