summaryrefslogtreecommitdiffstats
path: root/server/confdb/confdb.c
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-12-09 09:13:24 -0500
committerStephen Gallagher <sgallagh@redhat.com>2009-12-09 10:05:11 -0500
commitf38c4b39bad55cd416a72ae0ea864f34b85cbdc3 (patch)
tree68bd4f743753876e2be361e181d496bff209b767 /server/confdb/confdb.c
parent04e89aefae5748ec3eca2718c5d37c95e8ff6abd (diff)
downloadsssd-f38c4b39bad55cd416a72ae0ea864f34b85cbdc3.tar.gz
sssd-f38c4b39bad55cd416a72ae0ea864f34b85cbdc3.tar.xz
sssd-f38c4b39bad55cd416a72ae0ea864f34b85cbdc3.zip
Properly deny id_provider=files
Diffstat (limited to 'server/confdb/confdb.c')
-rw-r--r--server/confdb/confdb.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/server/confdb/confdb.c b/server/confdb/confdb.c
index 07d776c88..ad354e5bb 100644
--- a/server/confdb/confdb.c
+++ b/server/confdb/confdb.c
@@ -810,6 +810,13 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb,
goto done;
}
+ if (strcasecmp(domain->provider, "files") == 0) {
+ /* The files provider is not valid anymore */
+ DEBUG(0, ("The \"files\" provider is invalid\n"));
+ ret = EINVAL;
+ goto done;
+ }
+
if (strcasecmp(domain->provider, "local") == 0) {
/* If this is the local provider, we need to ensure that
* no other provider was specified for other types, since