[SCM] Samba Shared Repository - branch master updated

Stefan Metzmacher metze at samba.org
Sun Oct 3 03:42:01 MDT 2010


The branch, master has been updated
       via  d05ae94 s4:rpc_server/echo: fix compiler warning
      from  ff48f7c s3: Attempt to fix the IRIX build

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


- Log -----------------------------------------------------------------
commit d05ae9451aacd36d9c7ce7c313f95137aa5e8941
Author: Stefan Metzmacher <metze at samba.org>
Date:   Sat Oct 2 02:13:36 2010 +0200

    s4:rpc_server/echo: fix compiler warning
    
    metze
    
    Autobuild-User: Stefan Metzmacher <metze at samba.org>
    Autobuild-Date: Sun Oct  3 09:41:51 UTC 2010 on sn-devel-104

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

Summary of changes:
 source4/rpc_server/echo/rpc_echo.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/rpc_server/echo/rpc_echo.c b/source4/rpc_server/echo/rpc_echo.c
index ef80b26..0b10bd3 100644
--- a/source4/rpc_server/echo/rpc_echo.c
+++ b/source4/rpc_server/echo/rpc_echo.c
@@ -39,7 +39,7 @@ static NTSTATUS dcesrv_echo_EchoData(struct dcesrv_call_state *dce_call, TALLOC_
 		return NT_STATUS_OK;
 	}
 
-	r->out.out_data = talloc_memdup(mem_ctx, r->in.in_data, r->in.len);
+	r->out.out_data = (uint8_t *)talloc_memdup(mem_ctx, r->in.in_data, r->in.len);
 	if (!r->out.out_data) {
 		return NT_STATUS_NO_MEMORY;
 	}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list