The branch, master has been updated
       via  85f4f73 s4:torture/rpc/netlogon.c - fix two build warnings by casts
      from  5590ac2 selftest the raw.mux test is flaky:

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


- Log -----------------------------------------------------------------
commit 85f4f73ed4eacc96005e1eb8a591c84474c20845
Author: Matthias Dieter Wallnöfer <m...@samba.org>
Date:   Tue Feb 22 10:26:04 2011 +0100

    s4:torture/rpc/netlogon.c - fix two build warnings by casts
    
    Signed-off-by: Stefan Metzmacher <me...@samba.org>
    
    Autobuild-User: Matthias Dieter Wallnöfer <m...@samba.org>
    Autobuild-Date: Tue Feb 22 11:45:49 CET 2011 on sn-devel-104

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

Summary of changes:
 source4/torture/rpc/netlogon.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/torture/rpc/netlogon.c b/source4/torture/rpc/netlogon.c
index 30c42c0..e05fe9b 100644
--- a/source4/torture/rpc/netlogon.c
+++ b/source4/torture/rpc/netlogon.c
@@ -776,7 +776,7 @@ static bool test_netlogon_ops_args(struct dcerpc_pipe *p, 
struct torture_context
        for (i=52;i<53;i++) {
                ZERO_STRUCT(auth2);
                /* the authenticator should be ignored by the server */
-               generate_random_buffer(&auth, sizeof(auth));
+               generate_random_buffer((uint8_t *) &auth, sizeof(auth));
 
                r.in.validation_level = i;
 
@@ -815,7 +815,7 @@ static bool test_netlogon_ops_args(struct dcerpc_pipe *p, 
struct torture_context
        for (i=2;i<=3;i++) {
                ZERO_STRUCT(auth2);
                /* the authenticator should be ignored by the server */
-               generate_random_buffer(&auth, sizeof(auth));
+               generate_random_buffer((uint8_t *) &auth, sizeof(auth));
 
                r.in.validation_level = i;
 


-- 
Samba Shared Repository

Reply via email to