The branch, master has been updated
       via  04c3dfde0f0bc12daf0922a0fe578e3bde587fc8 (commit)
      from  93570491712bf42b5c8dba825e7d2a40e71c0378 (commit)

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


- Log -----------------------------------------------------------------
commit 04c3dfde0f0bc12daf0922a0fe578e3bde587fc8
Author: Tim Prouty <tpro...@samba.org>
Date:   Mon Jul 20 15:37:18 2009 -0700

    lib util: Fix const warning

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

Summary of changes:
 lib/util/genrand.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/util/genrand.c b/lib/util/genrand.c
index c51f938..5b84565 100644
--- a/lib/util/genrand.c
+++ b/lib/util/genrand.c
@@ -294,7 +294,7 @@ _PUBLIC_ uint32_t generate_random(void)
 _PUBLIC_ bool check_password_quality(const char *s)
 {
        int has_digit=0, has_capital=0, has_lower=0, has_special=0, has_high=0;
-       char* reals = s;
+       const char* reals = s;
        while (*s) {
                if (isdigit((unsigned char)*s)) {
                        has_digit |= 1;


-- 
Samba Shared Repository

Reply via email to