Fix bug #7072 - Accounts can't be unlocked from ldap.
authorJeremy Allison <jra@samba.org>
Thu, 28 Jan 2010 00:55:47 +0000 (16:55 -0800)
committerKarolin Seeger <kseeger@samba.org>
Thu, 4 Feb 2010 09:11:26 +0000 (10:11 +0100)
commit3a341c54ba6b8b63419662207f1d42767a00eb16
treecac378184baf5cf5990bd27639fc599e26b5f1ee
parent246eba3b807e5ce50ee838c51823a9eb44f6b690
Fix bug #7072 - Accounts can't be unlocked from ldap.

Fix suggested by Andy Hanton <andyhanton@gmail.com>. The LOGIN_CACHE
struct contains two time_t entries, but was being written to and
read from via tdb_pack/tdb_unpack functions using explicit 32-bit int specifiers.
This would break on machines with a 64-bit time_t. Use correct int
sizes for tdb_pack/tdb_unpack.

We have to fix this properly before 2037 :-).

Contains fixes from master 627fb85092f728065b6d772c41aeb75018154e86
and 69fd8461b8792f4fee1b61db03953044565492c6.

Jeremy.
source3/passdb/login_cache.c