The branch, master has been updated
       via  24ed8c5 regshell: Fix a counter that can actually be non-zero.
      from  773182f s3-passdb: Remove #if _SAMBA_BUILD_ == 4 from pdb_samba4

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


- Log -----------------------------------------------------------------
commit 24ed8c59244de695e370055fa3a1af418029d8b9
Author: Jelmer Vernooij <jel...@samba.org>
Date:   Wed Feb 8 14:17:17 2012 +0100

    regshell: Fix a counter that can actually be non-zero.
    
    This was a regression caused by one of the unsigned patches.
    
    Autobuild-User: Jelmer Vernooij <jel...@samba.org>
    Autobuild-Date: Wed Feb  8 16:00:22 CET 2012 on sn-devel-104

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

Summary of changes:
 source4/lib/registry/tools/regshell.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/lib/registry/tools/regshell.c 
b/source4/lib/registry/tools/regshell.c
index 6bd7fd3..1a4067b 100644
--- a/source4/lib/registry/tools/regshell.c
+++ b/source4/lib/registry/tools/regshell.c
@@ -428,7 +428,7 @@ static char **reg_complete_command(const char *text, int 
start, int end)
        /* Complete command */
        char **matches;
        size_t len, samelen=0;
-       unsigned int i, count=1;
+       int i, count=1;
 
        matches = malloc_array_p(char *, MAX_COMPLETIONS);
        if (!matches) return NULL;


-- 
Samba Shared Repository

Reply via email to