diff options
author | Volker Lendecke <vl@samba.org> | 2009-12-01 00:01:36 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-12-02 00:38:03 +0100 |
commit | 53744f01dc7f74f87e4c71057cc175e4c47d3a67 (patch) | |
tree | 30dc1022fcff88e443f0c4a496c546c54d2e2566 /source3/lib/ldb | |
parent | ecb071ca2a00d1b35ace2a4f8924f2af2ba34328 (diff) | |
download | samba-53744f01dc7f74f87e4c71057cc175e4c47d3a67.tar.gz samba-53744f01dc7f74f87e4c71057cc175e4c47d3a67.tar.bz2 samba-53744f01dc7f74f87e4c71057cc175e4c47d3a67.zip |
s3: Cope with older external libtdb
Diffstat (limited to 'source3/lib/ldb')
-rw-r--r-- | source3/lib/ldb/ldb_tdb/ldb_tdb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/lib/ldb/ldb_tdb/ldb_tdb.c b/source3/lib/ldb/ldb_tdb/ldb_tdb.c index 6bebb6df1c..e3bc069d9d 100644 --- a/source3/lib/ldb/ldb_tdb/ldb_tdb.c +++ b/source3/lib/ldb/ldb_tdb/ldb_tdb.c @@ -59,7 +59,9 @@ static int ltdb_err_map(enum TDB_ERROR tdb_code) case TDB_ERR_CORRUPT: case TDB_ERR_OOM: case TDB_ERR_EINVAL: +#if HAVE_TDB_ERR_NESTING case TDB_ERR_NESTING: +#endif return LDB_ERR_OPERATIONS_ERROR; case TDB_ERR_IO: return LDB_ERR_PROTOCOL_ERROR; |