The branch, master has been updated
       via  3b4738b Fix value overflow (one too many 'f's ).
      from  91e1c8d s3:lib: allow_trailing_dollar should only allow '$'

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


- Log -----------------------------------------------------------------
commit 3b4738b2fdedabb158282ff2cba13f1c2c898890
Author: Jeremy Allison <j...@samba.org>
Date:   Wed Feb 2 17:47:19 2011 -0800

    Fix value overflow (one too many 'f's ).
    
    Autobuild-User: Jeremy Allison <j...@samba.org>
    Autobuild-Date: Thu Feb  3 03:35:32 CET 2011 on sn-devel-104

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

Summary of changes:
 source3/winbindd/winbindd_cm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c
index 42f33ab..c692ffe 100644
--- a/source3/winbindd/winbindd_cm.c
+++ b/source3/winbindd/winbindd_cm.c
@@ -1450,7 +1450,7 @@ static void store_current_dc_in_gencache(const char 
*domain_name,
                goto done;
        }
 
-       gencache_set(key, value, 0x7ffffffff);
+       gencache_set(key, value, 0x7fffffff);
 done:
        TALLOC_FREE(value);
        TALLOC_FREE(key);


-- 
Samba Shared Repository

Reply via email to