summaryrefslogtreecommitdiffstats
path: root/server/db/sysdb.c
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2009-02-16 20:25:16 -0500
committerSimo Sorce <idra@samba.org>2009-02-20 18:09:29 -0500
commitb8f07efe5d98071777e3a2863688c8269a7912e4 (patch)
tree66693078c86c7d6ed289bce3f6aebbd9c6125ea7 /server/db/sysdb.c
parent2d151b22408e78e4b556000125cfc5abe068c846 (diff)
downloadsssd-b8f07efe5d98071777e3a2863688c8269a7912e4.tar.gz
sssd-b8f07efe5d98071777e3a2863688c8269a7912e4.tar.xz
sssd-b8f07efe5d98071777e3a2863688c8269a7912e4.zip
Completely rework the nss interface to be able to use 2
types of domains: modern and legacy modern uses member/meberof, legacy uses memberUid for group memberships. Rework the proxy backend to use the legacy style as that's the format the data comes in (trying to convert would require too many transformations and increased the number of queries). Add support for fetching groups in nss. Add support for enumerating users and groups (requires to enable enumeration in config) both in nss and in the proxy provider. Remove confdb_get_domain_basedn() and substitute with generic calls in the nss init function. Store a domain structure in the btree not the basedn so that we can add enumeration flags. Also make sure NSS understand how to make multiple calls on enumerations, also make passing the domian parameter always mandatory, passing in domain=* is not valid anymore. This work fixes also a few memory, degfault, and logic bugs found while testing all nss functions (there are still some to fix that are less critical and much harder to find yet).
Diffstat (limited to 'server/db/sysdb.c')
-rw-r--r--server/db/sysdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/db/sysdb.c b/server/db/sysdb.c
index f910110cc..5a9d8f256 100644
--- a/server/db/sysdb.c
+++ b/server/db/sysdb.c
@@ -1247,11 +1247,11 @@ int sysdb_posix_store_group(TALLOC_CTX *memctx,
switch(res->count) {
case 0:
flags = LDB_FLAG_MOD_ADD;
- DEBUG(3, ("Adding new entry\n"));
+ DEBUG(7, ("Adding new entry\n"));
break;
case 1:
flags = LDB_FLAG_MOD_REPLACE;
- DEBUG(3, ("Replacing existing entry\n"));
+ DEBUG(7, ("Replacing existing entry\n"));
break;
default:
DEBUG(0, ("Cache DB corrupted, base search returned %d results\n",