Fix bug #7072 - Accounts can't be unlocked from ldap.
authorJeremy Allison <jra@samba.org>
Thu, 28 Jan 2010 00:42:06 +0000 (16:42 -0800)
committerJeremy Allison <jra@samba.org>
Thu, 28 Jan 2010 00:42:06 +0000 (16:42 -0800)
commit627fb85092f728065b6d772c41aeb75018154e86
treea49d1fb2c44883a36e3adb6dde25c812b492e03b
parent8e26aa3d7cec968584283634fe3dce5553387c8c
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 :-).

Jeremy.
source3/passdb/login_cache.c