From 3b4738b2fdedabb158282ff2cba13f1c2c898890 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 2 Feb 2011 17:47:19 -0800 Subject: Fix value overflow (one too many 'f's ). Autobuild-User: Jeremy Allison Autobuild-Date: Thu Feb 3 03:35:32 CET 2011 on sn-devel-104 --- source3/winbindd/winbindd_cm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/winbindd/winbindd_cm.c') diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c index 42f33abf40..c692ffe75c 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); -- cgit