From d767fb160c36bd9dc339e343ebac58274204ad4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Wed, 25 Mar 2015 15:30:57 +0100 Subject: [PATCH] platform: load libnl-3.so.200, not libnl-3.so (rh #1205195) libnl-3.so link is only present in devel package (libnl3-devel). https://bugzilla.redhat.com/show_bug.cgi?id=1205195 --- src/platform/nm-linux-platform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/nm-linux-platform.c b/src/platform/nm-linux-platform.c index 76a2feb52..39c38f834 100644 --- a/src/platform/nm-linux-platform.c +++ b/src/platform/nm-linux-platform.c @@ -128,7 +128,7 @@ _nl_get_vtable (void) if (G_UNLIKELY (!vtable.f_nl_has_capability)) { void *handle; - handle = dlopen ("libnl-3.so", RTLD_LAZY | RTLD_NOLOAD); + handle = dlopen ("libnl-3.so.200", RTLD_LAZY | RTLD_NOLOAD); if (handle) { vtable.handle = handle; vtable.f_nl_has_capability = dlsym (handle, "nl_has_capability");