From d94b5e95d394f180aaa296310b57a2932e3f8e2a Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 2 Feb 2011 17:47:19 -0800 Subject: [PATCH] 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(-) diff --git a/source3/winbindd/winbindd_cm.c b/source3/winbindd/winbindd_cm.c index 134b6da97d..d76fce7a51 100644 --- a/source3/winbindd/winbindd_cm.c +++ b/source3/winbindd/winbindd_cm.c @@ -1411,7 +1411,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); -- 2.34.1