The branch, master has been updated
       via  3a8b67f... s4:netlogon RPC server - fix a counter variable type
      from  adb5f94... build: recalculate project deps when NONSHARED_BINARIES 
changes

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


- Log -----------------------------------------------------------------
commit 3a8b67fd3604ed4f129df42543824d04b7197089
Author: Matthias Dieter Wallnöfer <[email protected]>
Date:   Wed Apr 21 18:04:53 2010 +0200

    s4:netlogon RPC server - fix a counter variable type

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

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


Changeset truncated at 500 lines:

diff --git a/source4/rpc_server/netlogon/dcerpc_netlogon.c 
b/source4/rpc_server/netlogon/dcerpc_netlogon.c
index 66af44e..5acf91f 100644
--- a/source4/rpc_server/netlogon/dcerpc_netlogon.c
+++ b/source4/rpc_server/netlogon/dcerpc_netlogon.c
@@ -1678,7 +1678,8 @@ static WERROR fill_trusted_domains_array(TALLOC_CTX 
*mem_ctx,
        const char *trust_attrs[] = { "flatname", "trustPartner",
                                      "securityIdentifier", "trustDirection",
                                      "trustType", "trustAttributes", NULL };
-       int i, n;
+       uint32_t n;
+       int i;
        int ret;
 
        if (!(trust_flags & (NETR_TRUST_FLAG_INBOUND |


-- 
Samba Shared Repository

Reply via email to