From ec56fb826b20b080bbfaf09da671d24faf6c5e88 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Thu, 10 Sep 2009 12:43:42 -0400 Subject: Complete the removal of "legacy" option. The code was still dependent on it for the ldap driver. Changed the driver code to depend on the schema type. Fix defaults for user and groups trees. ATM if you use the rfc2307bis schema you have to put users and groups in 2 separate trees (what people does by default anyway. If this limitation will turn to be too hard, we will change this later. --- server/providers/proxy.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'server/providers/proxy.c') diff --git a/server/providers/proxy.c b/server/providers/proxy.c index c308d3f8..5428a6dc 100644 --- a/server/providers/proxy.c +++ b/server/providers/proxy.c @@ -968,7 +968,7 @@ again: state->grp->gr_name, state->grp->gr_gid, (const char **)state->grp->gr_mem, - NULL); + NULL, NULL); if (!subreq) { tevent_req_error(req, ENOMEM); return; @@ -1162,7 +1162,7 @@ again: state->grp->gr_name, state->grp->gr_gid, (const char **)state->grp->gr_mem, - NULL); + NULL, NULL); if (!subreq) { tevent_req_error(req, ENOMEM); return; @@ -1367,7 +1367,7 @@ again: state->grp->gr_name, state->grp->gr_gid, (const char **)state->grp->gr_mem, - NULL); + NULL, NULL); if (!subreq) { tevent_req_error(req, ENOMEM); return; @@ -1815,7 +1815,7 @@ again: state->grp->gr_name, state->grp->gr_gid, (const char **)state->grp->gr_mem, - NULL); + NULL, NULL); if (!subreq) { ret = ENOMEM; goto fail; -- cgit