1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

Fix value overflow (one too many 'f's ).

Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Thu Feb  3 03:35:32 CET 2011 on sn-devel-104
This commit is contained in:
Jeremy Allison 2011-02-02 17:47:19 -08:00
parent 91e1c8dc38
commit 3b4738b2fd

View File

@ -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);