[SCM] Samba Shared Repository - branch v3-6-test updated

Karolin Seeger kseeger at samba.org
Fri May 20 13:15:57 MDT 2011


The branch, v3-6-test has been updated
       via  aba30a8 s3-epmapper: Fixed endpoint registration.
      from  8546896 Fix bug 8153 found when building on an IPv6-only system by Kai Blin.

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test


- Log -----------------------------------------------------------------
commit aba30a8d502f0a425672205734bfb91d4286fc14
Author: Andreas Schneider <asn at samba.org>
Date:   Wed May 18 12:10:42 2011 +0200

    s3-epmapper: Fixed endpoint registration.
    
    Autobuild-User: Andreas Schneider <asn at cryptomilk.org>
    Autobuild-Date: Fri May 20 12:03:18 CEST 2011 on sn-devel-104
    (cherry picked from commit 7ab9e26b601e4e51736ce6eace46e6588fa1148f)
    
    Fix bug #8155 (Registering only named pipes on EPM for a service doesn't work).

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

Summary of changes:
 source3/rpc_server/rpc_ep_setup.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/rpc_server/rpc_ep_setup.c b/source3/rpc_server/rpc_ep_setup.c
index d00b351..2d4c7e9 100644
--- a/source3/rpc_server/rpc_ep_setup.c
+++ b/source3/rpc_server/rpc_ep_setup.c
@@ -133,7 +133,7 @@ static NTSTATUS rpc_ep_setup_try_register(TALLOC_CTX *mem_ctx,
 					  struct tevent_context *ev_ctx,
 					  struct messaging_context *msg_ctx,
 					  const struct ndr_interface_table *iface,
-					  const char *name,
+					  const char *ncalrpc,
 					  uint16_t port,
 					  struct dcerpc_binding_handle **pbh);
 
@@ -256,7 +256,7 @@ static NTSTATUS rpc_ep_setup_try_register(TALLOC_CTX *mem_ctx,
 					  struct tevent_context *ev_ctx,
 					  struct messaging_context *msg_ctx,
 					  const struct ndr_interface_table *iface,
-					  const char *name,
+					  const char *ncalrpc,
 					  uint16_t port,
 					  struct dcerpc_binding_handle **pbh)
 {
@@ -266,7 +266,7 @@ static NTSTATUS rpc_ep_setup_try_register(TALLOC_CTX *mem_ctx,
 	status = dcerpc_binding_vector_create(mem_ctx,
 					      iface,
 					      port,
-					      name,
+					      ncalrpc,
 					      &v);
 	if (!NT_STATUS_IS_OK(status)) {
 		return status;
@@ -276,7 +276,7 @@ static NTSTATUS rpc_ep_setup_try_register(TALLOC_CTX *mem_ctx,
 				    iface,
 				    v,
 				    &iface->syntax_id.uuid,
-				    name,
+				    iface->name,
 				    pbh);
 	talloc_free(v);
 	if (!NT_STATUS_IS_OK(status)) {


-- 
Samba Shared Repository


More information about the samba-cvs mailing list