1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
$Id: ChangeLog,v 1.13 2008/04/23 02:40:11 lukeh Exp $
===============================================================
10 Guido Guenther <agx@sigxcpu.org>
* add manual page
* return 0 exit code for NSS_STATUS_SUCCESS
(see nss_err2exitcode for complete mapping)
9 Emmanuel Galanos <egalanos@anchor.net.au>
* don't use absolute path for loading NSS library
* return error codes to caller (useful for scripts)
* limit number of realloc tries for NSS_STATUS_TRYAGAIN
* don't use DB transactions for updating (this uses
mktemp but as /var/db should not be world writeable,
we don't believe there to be a race condition)
8 Guido Guenther <agx@sigxcpu.org>
* load database into a temporary file for atomic
switchover
7 Guido Guenther <agx@sigxcpu.org>
* fix a segfault in cache.c
6 Guido Guenther <agx@sigxcpu.org>
* fix incorrectly applied patches
5 Guido Guenther <agx@sigxcpu.org>
* properly truncate the database in the db4 case,
otherwise old entries (no longer in the ldap tree)
won't get removed - we do the same for db3
* properly close the database before closing the
environment. According to the docs we should do so
before closing the environment
* use DB_AUTO_COMMIT with db->open so aborting the
transaction works properly. The old method of passing
the transaction ID doesn't seem to work with more recent
libdb4.3 and libd4.4 releases. Without that you'll get a
corrupted db when running nss_updatedb without a reachable
ldap server.
4 Luke Howard <lukeh@padl.com>
* fix BUG#206
3 Luke Howard <lukeh@padl.com>
* support for DB 4.x
* transact database update if DB library supports
transactions
* make path configurable with DB_DIR
* support for "db_nss" library
2 Luke Howard <lukeh@padl.com>
* fix DB build error
1 Luke Howard <lukeh@padl.com>
* initial version
|