From 4a89e8452ecbcb09d3e14ffb324bcfbed6328c7d Mon Sep 17 00:00:00 2001 From: Christof Schmitt Date: Wed, 18 Feb 2015 10:13:55 -0700 Subject: gpfs: Remove search for libgpfs_gpl.so MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Similar to the header files, libgpfs_gpl.so no longer exists. The library is now always called libgpfs.so. Signed-off-by: Christof Schmitt Reviewed-by: Ralph Böhme --- source3/modules/gpfs.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'source3/modules') diff --git a/source3/modules/gpfs.c b/source3/modules/gpfs.c index a9f267d3d9..b2ca704e04 100644 --- a/source3/modules/gpfs.c +++ b/source3/modules/gpfs.c @@ -369,17 +369,9 @@ static bool init_gpfs_function_lib(void *plibhandle_pointer, static bool init_gpfs_function(void *fn_pointer, const char *fn_name) { static void *libgpfs_handle = NULL; - static void *libgpfs_gpl_handle = NULL; - if (init_gpfs_function_lib(&libgpfs_handle, "libgpfs.so", - fn_pointer, fn_name)) { - return true; - } - if (init_gpfs_function_lib(&libgpfs_gpl_handle, "libgpfs_gpl.so", - fn_pointer, fn_name)) { - return true; - } - return false; + return init_gpfs_function_lib(&libgpfs_handle, "libgpfs.so", + fn_pointer, fn_name); } void init_gpfs(void) -- cgit