blob: fc6f1b9cd6952f3172314e9b2cad37d9a8a302a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
--- components/os_crypt/sync/libsecret_util_linux.cc.orig 2024-10-16 21:31:11 UTC
+++ components/os_crypt/sync/libsecret_util_linux.cc
@@ -185,16 +185,22 @@ bool LibsecretLoader::LoadLibsecret() {
// static
bool LibsecretLoader::LoadLibsecret() {
+#if BUILDFLAG(IS_BSD)
+ const char* kSecretLib = "libsecret-1.so";
+#else
+ const char* kSecretLib = "libsecret-1.so.0";
+#endif
+
if (libsecret_loaded_)
return true;
- static void* handle = dlopen("libsecret-1.so.0", RTLD_NOW | RTLD_GLOBAL);
+ static void* handle = dlopen(kSecretLib, 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/40467093): Channel this message to the user-facing log
- VLOG(1) << "Could not load libsecret-1.so.0: " << dlerror();
+ VLOG(1) << "Could not load " << kSecretLib << ": " << dlerror();
return false;
}
|