[SCM] Samba Shared Repository - branch v3-6-test updated

Jeremy Allison jra at samba.org
Wed Feb 2 18:55:40 MST 2011


The branch, v3-6-test has been updated
       via  f8366d7 Fix value overflow (one too many 'f's ). (cherry picked from commit 9f83a1ba188975b24ebc3819037c9c10e09ec00d)
      from  358abb2 pidl: regenerate lib/Parse/Pidl/Expr.pm from expr.yp

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-6-test


- Log -----------------------------------------------------------------
commit f8366d71550998694fd32345f4a318f16f65baf8
Author: Jeremy Allison <jra at samba.org>
Date:   Wed Feb 2 17:47:19 2011 -0800

    Fix value overflow (one too many 'f's ).
    (cherry picked from commit 9f83a1ba188975b24ebc3819037c9c10e09ec00d)

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

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


More information about the samba-cvs mailing list