$OpenBSD: patch-components_os_crypt_keyring_util_linux_cc,v 1.2 2019/03/24 12:24:45 robert Exp $

Index: components/os_crypt/keyring_util_linux.cc
--- components/os_crypt/keyring_util_linux.cc.orig
+++ components/os_crypt/keyring_util_linux.cc
@@ -69,12 +69,12 @@ bool GnomeKeyringLoader::LoadGnomeKeyring() {
   if (keyring_loaded)
     return true;
 
-  void* handle = dlopen("libgnome-keyring.so.0", RTLD_NOW | RTLD_GLOBAL);
+  void* handle = dlopen("libgnome-keyring.so", RTLD_NOW | RTLD_GLOBAL);
   if (!handle) {
     // We wanted to use GNOME Keyring, 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.)
-    LOG(WARNING) << "Could not load libgnome-keyring.so.0: " << dlerror();
+    LOG(WARNING) << "Could not load libgnome-keyring.so: " << dlerror();
     return false;
   }
 
