[SCM] Samba Shared Repository - branch master updated

Stefan Metzmacher metze at samba.org
Fri Feb 26 04:09:25 MST 2010


The branch, master has been updated
       via  062a8cf... s4-winbind: Fixed the memory context of tstream_bsd_existing()
       via  b800716... s4-ntp: Fixed the memory context of tstream_bsd_existing()
       via  c3b90f0... s4-kdc: Fixed the memory context of tstream_bsd_existing()
      from  e0e549a... s4:dcesrv_samr.c - Remove unused variable

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


- Log -----------------------------------------------------------------
commit 062a8cf0068d9833b68d6569eae6fdb0fc622726
Author: Andreas Schneider <asn at redhat.com>
Date:   Fri Feb 26 10:21:10 2010 +0100

    s4-winbind: Fixed the memory context of tstream_bsd_existing()
    
    Signed-off-by: Stefan Metzmacher <metze at samba.org>

commit b80071602ffa127ab1857b0203ff868c15b8ce6b
Author: Andreas Schneider <asn at redhat.com>
Date:   Fri Feb 26 10:19:55 2010 +0100

    s4-ntp: Fixed the memory context of tstream_bsd_existing()
    
    Signed-off-by: Stefan Metzmacher <metze at samba.org>

commit c3b90f00d4c76694060124a34eecb099584d3667
Author: Andreas Schneider <asn at redhat.com>
Date:   Fri Feb 26 10:35:01 2010 +0100

    s4-kdc: Fixed the memory context of tstream_bsd_existing()
    
    Signed-off-by: Stefan Metzmacher <metze at samba.org>

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

Summary of changes:
 source4/kdc/kdc.c             |    2 +-
 source4/ntp_signd/ntp_signd.c |    2 +-
 source4/winbind/wb_server.c   |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/kdc/kdc.c b/source4/kdc/kdc.c
index 827159b..984999b 100644
--- a/source4/kdc/kdc.c
+++ b/source4/kdc/kdc.c
@@ -311,7 +311,7 @@ static void kdc_tcp_accept(struct stream_connection *conn)
 
 	TALLOC_FREE(conn->event.fde);
 
-	rc = tstream_bsd_existing_socket(kdc_conn->tstream,
+	rc = tstream_bsd_existing_socket(kdc_conn,
 			socket_get_fd(conn->socket),
 			&kdc_conn->tstream);
 	if (rc < 0) {
diff --git a/source4/ntp_signd/ntp_signd.c b/source4/ntp_signd/ntp_signd.c
index 025ff2b..a2d14ad 100644
--- a/source4/ntp_signd/ntp_signd.c
+++ b/source4/ntp_signd/ntp_signd.c
@@ -445,7 +445,7 @@ static void ntp_signd_accept(struct stream_connection *conn)
 
 	TALLOC_FREE(conn->event.fde);
 
-	rc = tstream_bsd_existing_socket(ntp_signd_conn->tstream,
+	rc = tstream_bsd_existing_socket(ntp_signd_conn,
 			socket_get_fd(conn->socket),
 			&ntp_signd_conn->tstream);
 	if (rc < 0) {
diff --git a/source4/winbind/wb_server.c b/source4/winbind/wb_server.c
index 306c8e2..11f0bf0 100644
--- a/source4/winbind/wb_server.c
+++ b/source4/winbind/wb_server.c
@@ -127,7 +127,7 @@ static void wbsrv_accept(struct stream_connection *conn)
 
 	TALLOC_FREE(conn->event.fde);
 
-	rc = tstream_bsd_existing_socket(wbsrv_conn->tstream,
+	rc = tstream_bsd_existing_socket(wbsrv_conn,
 			socket_get_fd(conn->socket),
 			&wbsrv_conn->tstream);
 	if (rc < 0) {


-- 
Samba Shared Repository


More information about the samba-cvs mailing list