From 6a40411fcc7af4c93443b6c55360e22d18bcb236 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 18 Apr 2008 15:41:54 +0200 Subject: change the default idmap range to 3M -> 4M This gives us a lot more headroom, and means that we have a lower chance of running into real local users (This used to be commit b2dac6645c3bce45ab2178b9f5b4e017486b5b8e) --- source4/setup/idmap_init.ldif | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source4/setup/idmap_init.ldif b/source4/setup/idmap_init.ldif index a397cfd0d2..43e5b65562 100644 --- a/source4/setup/idmap_init.ldif +++ b/source4/setup/idmap_init.ldif @@ -1,5 +1,4 @@ dn: CN=CONFIG cn: CONFIG -lowerBound: 10000 -upperBound: 20000 - +lowerBound: 3000000 +upperBound: 4000000 -- cgit From 93c9de03afd907015108bbb53bd8453da3cc8115 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 18 Apr 2008 16:23:48 +0200 Subject: fixed a double free in winbind state->domain->netlogon_binding is a child of ctx, and ctx is freed by the composite_is_ok failure callback (This used to be commit 3c217518ba9a7b64fe6c842187499f1ee5189567) --- source4/winbind/wb_init_domain.c | 1 - 1 file changed, 1 deletion(-) diff --git a/source4/winbind/wb_init_domain.c b/source4/winbind/wb_init_domain.c index c1325bfe09..8b82ab711e 100644 --- a/source4/winbind/wb_init_domain.c +++ b/source4/winbind/wb_init_domain.c @@ -209,7 +209,6 @@ static void init_domain_recv_netlogonpipe(struct composite_context *ctx) &state->domain->netlogon_pipe); if (!composite_is_ok(state->ctx)) { - talloc_free(state->domain->netlogon_binding); return; } talloc_steal(state->domain->netlogon_pipe, state->domain->netlogon_binding); -- cgit