Fix bug #7072 - Accounts can't be unlocked from ldap.
authorJeremy Allison <jra@samba.org>
Thu, 28 Jan 2010 01:16:04 +0000 (17:16 -0800)
committerKarolin Seeger <kseeger@samba.org>
Wed, 24 Feb 2010 15:25:09 +0000 (16:25 +0100)
commit00388e6b8776c4e54ca0d0b566a50a19e0f6d78f
treefbd5d8d42826b720771541ed1c9e60238f49d9d2
parent153357b9bb4d70a168c81cb9ff2da437eae823fc
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.
(cherry picked from commit 0b36486fa7d2689635018c2fc883860251dc8066)
source/passdb/login_cache.c