[SCM] Samba Shared Repository - branch master updated

Jeremy Allison jra at samba.org
Fri Jun 25 14:30:25 MDT 2010


The branch, master has been updated
       via  afc6d2f... Don't use frame as the talloc ctx in open_schannel_session_store(), as this breaks running from inetd (we free frame below). Use NULL instead.
      from  86be54e... Change talloc_autofree_context() to frame in Andrew's schannel.tdb TDB_CLEAR_IF_FIRST changes. Using talloc_autofree_context() has undesirable effects when forked subprocesses exit.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit afc6d2f46d6aed07f828ef2f0aa6b62250468132
Author: Jeremy Allison <jra at samba.org>
Date:   Fri Jun 25 13:29:00 2010 -0700

    Don't use frame as the talloc ctx in open_schannel_session_store(), as this breaks running from inetd
    (we free frame below). Use NULL instead.
    
    Jeremy.

-----------------------------------------------------------------------

Summary of changes:
 source3/smbd/server.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index 24788a9..1b00f2c 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -1025,7 +1025,7 @@ extern void build_options(bool screen);
 	}
 
 	if (lp_server_role() == ROLE_DOMAIN_BDC || lp_server_role() == ROLE_DOMAIN_PDC) {
-		if (!open_schannel_session_store(frame, lp_private_dir())) {
+		if (!open_schannel_session_store(NULL, lp_private_dir())) {
 			DEBUG(0,("ERROR: Samba cannot open schannel store for secured NETLOGON operations.\n"));
 			exit(1);
 		}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list