From 4eeeb63647c7e32efb9c9a997f4d6479207899b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Tue, 15 Dec 2020 13:54:32 +0100 Subject: LibSensors: fix unversioned libsensors library name --- linux/LibSensors.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'linux/LibSensors.c') diff --git a/linux/LibSensors.c b/linux/LibSensors.c index 1e53882c..5e119350 100644 --- a/linux/LibSensors.c +++ b/linux/LibSensors.c @@ -23,9 +23,9 @@ static void* dlopenHandle = NULL; int LibSensors_init(FILE* input) { if (!dlopenHandle) { - dlopenHandle = dlopen("libsensors.so.", RTLD_LAZY); + dlopenHandle = dlopen("libsensors.so", RTLD_LAZY); if (!dlopenHandle) { - /* Debian contains no unversioned .so in libsensors5, only in the -dev package, so work around that: */ + /* Debian contains no unversioned .so in libsensors5, only in the -dev package, so work around that: */ dlopenHandle = dlopen("libsensors.so.5", RTLD_LAZY); if (!dlopenHandle) goto dlfailure; -- cgit v1.2.3