svn commit: samba r22771 - in branches: SAMBA_3_0/source/nsswitch SAMBA_3_0_25/source/nsswitch SAMBA_3_0_26/source/nsswitch

idra at samba.org idra at samba.org
Wed May 9 21:38:42 GMT 2007


Author: idra
Date: 2007-05-09 21:38:41 +0000 (Wed, 09 May 2007)
New Revision: 22771

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=22771

Log:

One liner fix for idmap_ldap
Fixes the strange behavior we were seeing about idmap_ldap creating
a new connection for each query.

Jerry we need this in for 3.0.25


Modified:
   branches/SAMBA_3_0/source/nsswitch/idmap_ldap.c
   branches/SAMBA_3_0_25/source/nsswitch/idmap_ldap.c
   branches/SAMBA_3_0_26/source/nsswitch/idmap_ldap.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/idmap_ldap.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/idmap_ldap.c	2007-05-09 16:26:43 UTC (rev 22770)
+++ branches/SAMBA_3_0/source/nsswitch/idmap_ldap.c	2007-05-09 21:38:41 UTC (rev 22771)
@@ -821,6 +821,7 @@
 	talloc_set_destructor(ctx, idmap_ldap_close_destructor);
 
 	dom->private_data = ctx;
+	dom->initialized = True;
 
 	talloc_free(config_option);
 	return NT_STATUS_OK;

Modified: branches/SAMBA_3_0_25/source/nsswitch/idmap_ldap.c
===================================================================
--- branches/SAMBA_3_0_25/source/nsswitch/idmap_ldap.c	2007-05-09 16:26:43 UTC (rev 22770)
+++ branches/SAMBA_3_0_25/source/nsswitch/idmap_ldap.c	2007-05-09 21:38:41 UTC (rev 22771)
@@ -818,6 +818,7 @@
 	talloc_set_destructor(ctx, idmap_ldap_close_destructor);
 
 	dom->private_data = ctx;
+	dom->initialized = True;
 
 	talloc_free(config_option);
 	return NT_STATUS_OK;

Modified: branches/SAMBA_3_0_26/source/nsswitch/idmap_ldap.c
===================================================================
--- branches/SAMBA_3_0_26/source/nsswitch/idmap_ldap.c	2007-05-09 16:26:43 UTC (rev 22770)
+++ branches/SAMBA_3_0_26/source/nsswitch/idmap_ldap.c	2007-05-09 21:38:41 UTC (rev 22771)
@@ -818,6 +818,7 @@
 	talloc_set_destructor(ctx, idmap_ldap_close_destructor);
 
 	dom->private_data = ctx;
+	dom->initialized = True;
 
 	talloc_free(config_option);
 	return NT_STATUS_OK;



More information about the samba-cvs mailing list