svn commit: samba r10407 - in branches/SAMBA_4_0/source/auth/gensec: .

tridge at samba.org tridge at samba.org
Thu Sep 22 04:19:57 GMT 2005


Author: tridge
Date: 2005-09-22 04:19:57 +0000 (Thu, 22 Sep 2005)
New Revision: 10407

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

Log:

the schannel database does not need to be synchronous (and thus crash
safe) as it is removed on smbd restart

Modified:
   branches/SAMBA_4_0/source/auth/gensec/schannel_state.c


Changeset:
Modified: branches/SAMBA_4_0/source/auth/gensec/schannel_state.c
===================================================================
--- branches/SAMBA_4_0/source/auth/gensec/schannel_state.c	2005-09-22 04:16:46 UTC (rev 10406)
+++ branches/SAMBA_4_0/source/auth/gensec/schannel_state.c	2005-09-22 04:19:57 UTC (rev 10407)
@@ -46,7 +46,7 @@
 
 	existed = file_exists(path);
 	
-	ldb = ldb_wrap_connect(mem_ctx, path, 0, NULL);
+	ldb = ldb_wrap_connect(mem_ctx, path, LDB_FLG_NOSYNC, NULL);
 	talloc_free(path);
 	if (!ldb) {
 		return NULL;



More information about the samba-cvs mailing list