summaryrefslogtreecommitdiffstats
path: root/server/providers
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-06-29 16:03:35 -0400
committerStephen Gallagher <sgallagh@redhat.com>2009-06-30 10:15:28 -0400
commit293bb31f2747b402ce39152497facd42a5593f9c (patch)
tree9e39909f58b0c6fe90caa44e78d036d46c0c88fe /server/providers
parent6d376e52755384bb16a360be1075622903e3e9e9 (diff)
downloadsssd-293bb31f2747b402ce39152497facd42a5593f9c.tar.gz
sssd-293bb31f2747b402ce39152497facd42a5593f9c.tar.xz
sssd-293bb31f2747b402ce39152497facd42a5593f9c.zip
Remove redundant libPath option from proxy provider
The libPath should be constructed from the libName. There is no benefit to specifying it separately.
Diffstat (limited to 'server/providers')
-rw-r--r--server/providers/proxy.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/server/providers/proxy.c b/server/providers/proxy.c
index 3252a7455..937b1d076 100644
--- a/server/providers/proxy.c
+++ b/server/providers/proxy.c
@@ -1359,14 +1359,18 @@ int sssm_proxy_init(struct be_ctx *bectx,
ret = confdb_get_string(bectx->cdb, ctx, bectx->conf_path,
"libName", NULL, &libname);
- ret = confdb_get_string(bectx->cdb, ctx, bectx->conf_path,
- "libPath", NULL, &libpath);
if (ret != EOK) goto done;
- if (libpath == NULL || libname == NULL) {
+ if (libname == NULL) {
ret = ENOENT;
goto done;
}
+ libpath = talloc_asprintf(ctx, "libnss_%s.so.2", libname);
+ if (!libpath) {
+ ret = ENOMEM;
+ goto done;
+ }
+
handle = dlopen(libpath, RTLD_NOW);
if (!handle) {
DEBUG(0, ("Unable to load %s module with path, error: %s\n",